diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2011-08-08 12:41:54 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2011-08-17 13:04:37 +0100 |
commit | d1de9fcc6083e4bf19257708e0120c448c647016 (patch) | |
tree | ae1505dd3a60c9bcabc2141f45a505d3689a5c7f /resize/Makefile.am | |
parent | b50dc90e5c0bfce2c205f117839b6b6a0108b541 (diff) | |
download | libguestfs-d1de9fcc6083e4bf19257708e0120c448c647016.tar.gz libguestfs-d1de9fcc6083e4bf19257708e0120c448c647016.tar.xz libguestfs-d1de9fcc6083e4bf19257708e0120c448c647016.zip |
build: Set TMPDIR for local testing.
This avoids conflicts with the globally installed libguestfs
appliance, or lets us build in multiple local directories at the same
time without conflicts.
(cherry picked from commit f7d18c84dde596699ffc5100fec2cf7b0d582450)
Diffstat (limited to 'resize/Makefile.am')
-rw-r--r-- | resize/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/resize/Makefile.am b/resize/Makefile.am index 8418cb47..fd7f71a8 100644 --- a/resize/Makefile.am +++ b/resize/Makefile.am @@ -83,7 +83,8 @@ random_val := $(shell awk 'BEGIN{srand(); print 1+int(255*rand())}' < /dev/null) TESTS_ENVIRONMENT = \ MALLOC_PERTURB_=$(random_val) \ LD_LIBRARY_PATH=$(top_builddir)/src/.libs \ - LIBGUESTFS_PATH=$(top_builddir)/appliance + LIBGUESTFS_PATH=$(top_builddir)/appliance \ + TMPDIR=$(top_builddir) TESTS = test-virt-resize.sh |