diff options
author | Dan Nicholson <[email protected]> | 2008-05-06 12:29:53 -0700 |
---|---|---|
committer | Dan Nicholson <[email protected]> | 2008-05-06 12:29:53 -0700 |
commit | cba14d85a854df8b5f24342c072acf21813761b6 (patch) | |
tree | 60b6fd20ef1ba10ebbc1ddf8dc6e11908aa063c2 /src/glx/Makefile | |
parent | 50f7e6fb5f0754093e11b781b916034001d44a09 (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/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glx/Makefile b/src/glx/Makefile index bd486cf81b3..a96e0dadaa7 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 |