Skip to content

Commit

Permalink
bootstrap: use of $TMPDIR instead of /tmp
Browse files Browse the repository at this point in the history
.. as that is not available or not writable on any system...
  • Loading branch information
sf-mensch committed Jan 18, 2023
1 parent 807fcf9 commit 9e69866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_aux/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ AC_OPTS="--verbose --force --include=m4"
if test "$1" = "install"; then AC_OPTS="$AC_OPTS --install"; fi

# ensure the configure and Makefile parts are up-to-date:
if test "x$TMPDIR" = x ; then TMPDIR=/tmp
if test "x$TMPDIR" = x ; then TMPDIR=/tmp; fi
msgs=$TMPDIR/autoreconf
echo autoreconf $AC_OPTS $MAINPATH
autoreconf $AC_OPTS $MAINPATH > $msgs 2>&1; ret=$?
Expand Down

0 comments on commit 9e69866

Please sign in to comment.