summaryrefslogtreecommitdiff
path: root/src/glu/Makefile
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2004-03-26 21:38:45 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2004-03-26 21:38:45 +0000
commitdf8bc572587f04b29055bb3a36f8c3b724c63b96 (patch)
tree332a22d8fb9d7d8d1608e7a2419b7bd33bd8d194 /src/glu/Makefile
parentd6de4d8b33e72cde9f5f14c0d2d21071ea007fc2 (diff)
Don't use pushd/popd.
Diffstat (limited to 'src/glu/Makefile')
-rw-r--r--src/glu/Makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/glu/Makefile b/src/glu/Makefile
index 4ddf09016b..2b922fc021 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