mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 15:06:14 +01:00
Replaced pushd and popd with equivalent shell code.
pushd and popd are not supported outside of bash (and csh?).
This commit is contained in:
parent
8c25d98d50
commit
bf75878819
@ -4,7 +4,8 @@
|
||||
srcdir=`dirname $0`
|
||||
test -z "$srcdir" && srcdir=.
|
||||
|
||||
pushd $srcdir
|
||||
ORIGDIR=`pwd`
|
||||
cd $srcdir
|
||||
PROJECT=GLib
|
||||
TEST_TYPE=-f
|
||||
FILE=glib.h
|
||||
@ -60,7 +61,7 @@ aclocal $ACLOCAL_FLAGS
|
||||
|
||||
automake $am_opt
|
||||
autoconf
|
||||
popd
|
||||
cd $ORIGDIR
|
||||
|
||||
$srcdir/configure "$@"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user