Fixes for CDPATH being set.

This commit is contained in:
Richard Jones
2009-04-20 21:16:25 +01:00
parent 6a77cc2611
commit 89f060b5cf
3 changed files with 4 additions and 2 deletions

View File

@@ -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.

View File

@@ -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 "$@"

View File

@@ -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 "$@"