diff options
author | Brian Paul <[email protected]> | 2004-03-26 21:38:45 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-03-26 21:38:45 +0000 |
commit | df8bc572587f04b29055bb3a36f8c3b724c63b96 (patch) | |
tree | 332a22d8fb9d7d8d1608e7a2419b7bd33bd8d194 /src/glu | |
parent | d6de4d8b33e72cde9f5f14c0d2d21071ea007fc2 (diff) |
Don't use pushd/popd.
Diffstat (limited to 'src/glu')
-rw-r--r-- | src/glu/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/glu/Makefile b/src/glu/Makefile index 4ddf09016ba..2b922fc021d 100644 --- a/src/glu/Makefile +++ b/src/glu/Makefile @@ -10,15 +10,11 @@ SUBDIRS = $(GLU_DIRS) default: $(TOP)/configs/current @for dir in $(SUBDIRS) ; do \ - pushd $$dir ; \ - make ; \ - popd ; \ + (cd $$dir ; make) ; \ done clean: @for dir in $(SUBDIRS) ; do \ - pushd $$dir ; \ - make clean; \ - popd ; \ + (cd $$dir ; make clean) ; \ done |