Revision
306
Author
jeremyhu@freedesktop.org
Date
2009-03-10 14:15:08 -0700 (Tue, 10 Mar 2009)

Log Message

Fixed install_name of our dylib

Modified Paths

Diff

Modified: AppleSGLX/trunk/Makefile (305 => 306)


--- AppleSGLX/trunk/Makefile	2009-03-10 19:35:38 UTC (rev 305)
+++ AppleSGLX/trunk/Makefile	2009-03-10 21:15:08 UTC (rev 306)
@@ -43,7 +43,7 @@
 
 $(BUILD_DIR)/libGL.1.2.dylib: $(OBJECTS)
 	-if ! test -d $(BUILD_DIR); then $(MKDIR) $(BUILD_DIR); fi
-	$(CC) $(GL_CFLAGS) -o $@ -dynamiclib -install_name $(INSTALL_DIR)/lib/libGL.1.2.dylib -compatibility_version 1.2 -current_version 1.2 -lXplugin -framework ApplicationServices -framework CoreFoundation $(GL_LDFLAGS) -lXext -lX11 -Wl,-exported_symbols_list,exports.list $(OBJECTS)
+	$(CC) $(GL_CFLAGS) -o $@ -dynamiclib -install_name $(INSTALL_DIR)/lib/libGL.1.dylib -compatibility_version 1.2 -current_version 1.2 -lXplugin -framework ApplicationServices -framework CoreFoundation $(GL_LDFLAGS) -lXext -lX11 -Wl,-exported_symbols_list,exports.list $(OBJECTS)
 
 .c.o:
 	$(COMPILE) $<