From 5897d0062fcf5faad4696d7be81d10544ac4df86 Mon Sep 17 00:00:00 2001 From: evomarc Date: Thu, 18 Oct 2001 11:48:52 +0000 Subject: [PATCH] Replaced pushd and popd with cd and cd .. - for Windows/Cygwin compatibility --- eo/app/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eo/app/Makefile.am b/eo/app/Makefile.am index ecd7a6764..546994654 100644 --- a/eo/app/Makefile.am +++ b/eo/app/Makefile.am @@ -9,9 +9,9 @@ SUBDIRS = gprop mastermind gpsymreg ############################################################################### all: - for i in $(SUBDIRS); do pushd $$i && $(MAKE) all; popd; done + for i in $(SUBDIRS); do cd $$i && $(MAKE) all; cd ..; done clean: - for i in $(SUBDIRS); do pushd $$i && $(MAKE) clean; popd; done + for i in $(SUBDIRS); do cd $$i && $(MAKE) clean; cd ..; done ###############################################################################