Description of problem: Recent kernel versions during installation print messages like /lib/modules/2.6.7-1.459/build / Closer examination reveals that this come from a somewhat strange in non-interactive shell invocation of pushd. More precisely the script fragment in question looks as follows: if [ -x /usr/sbin/hardlink ] ; then pushd /lib/modules/2.6.7-1.459/build ; { find . -type f | while read f; do hardlink -c /lib/modules/*/build/$f $f ; done } While not simpler [ -x /usr/sbin/hardlink ] && hardlink /lib/modules/ or, maybe a bit more circumspect [ -x /usr/sbin/hardlink ] && hardlink /lib/modules/*/build/ which seems to really amount to the same? (It is hard to be sure withough digging through sources as hardlink does not have any documentation I can see). In any case 'cd /lib/modules/2.6.7-1.459/build && { find ... }' will not do anything else in the context beyond checking that cd indeed succeeded. Version-Release number of selected component (if applicable): kernel-2.6.7-1.459
I don't see the output you mention on any of the current kernels, so I'm assuming this got fixed some time ago.