* Ideally this would check for a user's TMPDIR env variable and use that instead
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1356
9efc2488-bf62-4759-914b-
345cdb29e865
PYTHON="python"
fi
AC_MSG_CHECKING($PYTHON_NAME module: $1)
- $PYTHON -c "import $1" 2>/tmp/null
+ $PYTHON -c "import $1" 2>/dev/null
if test $? -eq 0;
then
AC_MSG_RESULT(yes)
# Set install path variables
#------------------------------
AC_ARG_WITH([tmp],
-[ --with-tmp=path location for the tmp dir for openSRF (/tmp/osrftmp by default)],
+[ --with-tmp=path location for the tmp dir for openSRF (default is /tmp)],
[TMP=${withval}],
-[TMP=/tmp/osrftmp])
+[TMP=/tmp])
AC_SUBST([TMP])
AC_ARG_WITH([apxs],