diff options
author | Brian Paul <[email protected]> | 2004-03-25 21:17:48 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-03-25 21:17:48 +0000 |
commit | 77b47bb27bb8f36d2b0980ed78175d859a7d2bed (patch) | |
tree | dafea578e042a0352d95a2fbdee435e8219717bd /src/mesa/Makefile.X11 | |
parent | f28570679f3f1ab90ce8a36d8f92e1c75ca5f419 (diff) |
re-order arguments to mklib
Diffstat (limited to 'src/mesa/Makefile.X11')
-rw-r--r-- | src/mesa/Makefile.X11 | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mesa/Makefile.X11 b/src/mesa/Makefile.X11 index c4def104858..22708b5efa2 100644 --- a/src/mesa/Makefile.X11 +++ b/src/mesa/Makefile.X11 @@ -105,10 +105,9 @@ $(LIBDIR)/$(GL_LIB): $(OBJECTS) $(LIBDIR)/$(OSMESA_LIB): $(OSMESA_OBJECTS) if [ ${OSMESA_LIB} ] ; then \ $(TOP)/bin/mklib -o $(OSMESA_LIB_NAME) -major $(MESA_MAJOR) \ - -minor $(MESA_MINOR) -patch $(GL_TINY) -L$(LIBDIR) \ - -l$(GL_LIB_NAME) $(OSMESA_LIB_DEPS) \ - -install $(LIBDIR) \ - $(MKLIB_OPTIONS) $(OSMESA_OBJECTS) ; \ + -minor $(MESA_MINOR) -patch $(GL_TINY) \ + $(MKLIB_OPTIONS) -install $(LIBDIR) \ + $(OSMESA_LIB_DEPS) $(OSMESA_OBJECTS) ; \ fi |