Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Don't use pushd/popd in autogen.sh; Ubuntu's /bin/sh doesn't support it.
  • Loading branch information
icculus committed Dec 27, 2016
1 parent b4e069e commit 76f2ae3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions autogen.sh
Expand Up @@ -5,7 +5,7 @@ echo "This may take a while ..."

srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
pushd $srcdir
cd "$srcdir"

# Regenerate configuration files
cat acinclude/* >aclocal.m4
Expand All @@ -19,7 +19,5 @@ if test x$found = xfalse; then
fi
(cd test; sh autogen.sh)

popd

# Run configure for this platform
echo "Now you are ready to run ./configure"

0 comments on commit 76f2ae3

Please sign in to comment.