diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-05-28 08:53:32 -0600 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-05-28 08:53:53 -0600 |
commit | 5429d4a04a90f1e8664336143985973729a97768 (patch) | |
tree | 5f219eec2f2c20d87361fcabc9823b8a393809d4 | |
parent | 3e6c791390fd03ca04302f1312b94cd3c5ca0054 (diff) |
replace make with $(MAKE) (bug 16133)
-rw-r--r-- | src/glx/x11/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/x11/Makefile b/src/glx/x11/Makefile index 1d6bb2f1c9..894c3cf159 100644 --- a/src/glx/x11/Makefile +++ b/src/glx/x11/Makefile @@ -85,7 +85,7 @@ tags: etags `find . -name \*.[ch]` `find $(TOP)/include` install: $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME) - make -C $(TOP)/src/mesa install-libgl + $(MAKE) -C $(TOP)/src/mesa install-libgl # Remove .o and backup files clean: |