Fixes for CDPATH being set.
authorRichard Jones <rjones@redhat.com>
Mon, 20 Apr 2009 20:16:25 +0000 (21:16 +0100)
committerRichard Jones <rjones@redhat.com>
Mon, 20 Apr 2009 20:16:25 +0000 (21:16 +0100)
make-initramfs.sh.in
perl/run-perl-tests
ruby/run-ruby-tests

index 612db90..a9e25bf 100755 (executable)
@@ -20,6 +20,8 @@
 
 set -e
 
+unset CDPATH
+
 # If you want to do some extra debugging and diagnosis of the
 # initramfs image, then uncomment this line.  This makes the image
 # larger.
index 1a890fc..228fb17 100755 (executable)
@@ -17,5 +17,5 @@
 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
 export LD_LIBRARY_PATH=../src/.libs
-export LIBGUESTFS_PATH=$(cd .. && pwd)
+export LIBGUESTFS_PATH=$(cd .. > /dev/null && pwd)
 make -f Makefile-pl test "$@"
index 9e8908c..3bf5577 100755 (executable)
@@ -17,6 +17,6 @@
 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
 export LD_LIBRARY_PATH=../src/.libs
-export LIBGUESTFS_PATH=$(cd .. && pwd)
+export LIBGUESTFS_PATH=$(cd .. > /dev/null && pwd)
 rake test "$@"