summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwez <wez@1665872d-e22b-0410-9e5d-a57ad4215e6d>2008-06-03 03:39:58 +0000
committerwez <wez@1665872d-e22b-0410-9e5d-a57ad4215e6d>2008-06-03 03:39:58 +0000
commit4df55a86d4d3c63850e655a9321d3ca6cb7a264c (patch)
treecd2daf9f4296f26974445fd55d8bfd3004111430
parent518112b4d0b666457e91d6046dd7873d46081968 (diff)
downloadportableumem-4df55a86d4d3c63850e655a9321d3ca6cb7a264c.tar.gz
fix portability issue reported by Mito
git-svn-id: https://labs.omniti.com/portableumem/trunk@48 1665872d-e22b-0410-9e5d-a57ad4215e6d
-rwxr-xr-xumem_test42
1 files changed, 1 insertions, 1 deletions
diff --git a/umem_test4 b/umem_test4
index d4ea7ac..39402c4 100755
--- a/umem_test4
+++ b/umem_test4
@@ -5,7 +5,7 @@
#
FILE=Makefile.am
-TMPLOC=$(mktemp -d -t umem_test4.XXXXXX)
+TMPLOC=`mktemp -d /tmp/umem_test4.XXXXXX`
trap 'rm -rf $TMPLOC' 1 2 15
LD_PRELOAD=.libs/libumem.so /usr/bin/ldd /bin/ls >$TMPLOC/log 2>&1