Created
January 17, 2011 20:33
-
-
Save springmeyer/783431 to your computer and use it in GitHub Desktop.
patch to compile libosr on os x
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: ogr/GNUmakefile | |
=================================================================== | |
--- ogr/GNUmakefile (revision 21433) | |
+++ ogr/GNUmakefile (working copy) | |
@@ -18,4 +18,5 @@ | |
$(LIB): $(OBJ) | |
rm -f $(LIB) | |
$(AR) rc $(LIB) $(OBJ) | |
+ ranlib $(LIB) | |
Index: cpl/GNUmakefile | |
=================================================================== | |
--- cpl/GNUmakefile (revision 21433) | |
+++ cpl/GNUmakefile (working copy) | |
@@ -24,6 +24,7 @@ | |
$(LIB): $(OBJ) | |
rm -f $(LIB) | |
$(AR) rc $(LIB) $(OBJ) | |
+ ranlib $(LIB) | |
dist: clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment