diff options
author | Dan Nicholson <[email protected]> | 2008-05-07 07:11:49 -0700 |
---|---|---|
committer | Dan Nicholson <[email protected]> | 2008-05-07 07:11:49 -0700 |
commit | ec813878e4889be97535cf01bd2b49fd09467a47 (patch) | |
tree | 7586719bd91c73899426536d41cba01818fd67dd /src/glu/sgi/Makefile | |
parent | df43fb661b2030d9b833a42dd47b8d7bf58d73aa (diff) |
Ensure recursive makes always propagate errors
There were a couple spots left where a recursive make could fail in a
chain of commands without stopping.
Diffstat (limited to 'src/glu/sgi/Makefile')
-rw-r--r-- | src/glu/sgi/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glu/sgi/Makefile b/src/glu/sgi/Makefile index bb1c0a8aba5..207247ad87a 100644 --- a/src/glu/sgi/Makefile +++ b/src/glu/sgi/Makefile @@ -128,7 +128,7 @@ default: echo "$(GLU_LIB_NAME) not build under BeOS, but integrated into ${GL_LIB_NAME}." ; \ exit 0 ; \ else \ - $(MAKE) $(TOP)/$(LIB_DIR)/$(GLU_LIB_NAME) ; \ + $(MAKE) $(TOP)/$(LIB_DIR)/$(GLU_LIB_NAME) || exit 1 ; \ fi $(TOP)/$(LIB_DIR): |