summaryrefslogtreecommitdiff
path: root/src/glx/Makefile
diff options
context:
space:
mode:
authorDan Nicholson <dbn.lists@gmail.com>2008-05-06 12:29:53 -0700
committerDan Nicholson <dbn.lists@gmail.com>2008-05-06 12:29:53 -0700
commitcba14d85a854df8b5f24342c072acf21813761b6 (patch)
tree60b6fd20ef1ba10ebbc1ddf8dc6e11908aa063c2 /src/glx/Makefile
parent50f7e6fb5f0754093e11b781b916034001d44a09 (diff)
Error consistently when running recursive make
When changing directories and running a sub-make, ensure that both the cd and make commands propagate errors to the parent make.
Diffstat (limited to 'src/glx/Makefile')
-rw-r--r--src/glx/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glx/Makefile b/src/glx/Makefile
index bd486cf81b..a96e0dadaa 100644
--- a/src/glx/Makefile
+++ b/src/glx/Makefile
@@ -4,9 +4,9 @@ include $(TOP)/configs/current
default:
- cd mini ; $(MAKE)
+ cd mini && $(MAKE)
clean:
- cd mini ; $(MAKE) clean
+ cd mini && $(MAKE) clean