From bb93d349d63172ace0f4e3cb3d04a92fb8cc330c Mon Sep 17 00:00:00 2001 From: Stephane Bortzmeyer Date: Sat, 5 May 2007 21:00:30 +0000 Subject: [PATCH] Use only standard features of the shell (pushd is not standard) --- SRC/recreate-autofiles | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/SRC/recreate-autofiles b/SRC/recreate-autofiles index 37b1461..178575c 100755 --- a/SRC/recreate-autofiles +++ b/SRC/recreate-autofiles @@ -10,7 +10,7 @@ autoheader libtoolize --force automake --add-missing autoconf -pushd plugins +cd plugins aclocal automake --foreign --add-missing autoconf @@ -21,4 +21,5 @@ for dir in dns random whois ldap postgresql; do automake --foreign --add-missing autoconf cd .. -done \ No newline at end of file +done +cd ..