On Tue, Apr 21, 2009 at 10:12:53AM +0200, Ján ONDREJ (SAL) wrote:
Yeah, CDPATH problem fixed. :-))
Patch for febootstrap attached. Problem is, that you are using: febootstrap-to-initramfs initramfs > $output-t but this febootstrap-to-initramfs uses "cd" and displays current path before showing real output.
SAL
--- /usr/bin/febootstrap-to-initramfs 2009-04-12 11:17:41.000000000 +0200 +++ febootstrap/febootstrap-to-initramfs 2009-04-21 10:00:31.000000000 +0200 @@ -23,7 +23,7 @@ exit 1 fi
-cd "$1" +cd "$1" >/dev/null
if [ ! -f fakeroot.log -a $(id -u) -ne 0 ]; then echo "no fakeroot.log and not running as root"
Thanks, applied.
Rich.