When compiling on linux w/o libtool (e.g. to support kakadu), make -j is broken.<br>Here's a little patch to fix it.<br>-------------------- cut --------------------<br>
diff -uNr gdal-1.3.2.orig/GNUmakefile gdal-1.3.2/GNUmakefile<br>--- gdal-1.3.2.orig/GNUmakefile 2006-03-24 08:51:56.000000000 -0800<br>+++ gdal-1.3.2/GNUmakefile 2006-09-19 12:25:36.000000000 -0700<br>@@ -35,7 +35,7 @@
<br> $(AR) r $(GDAL_LIB) $(GDAL_OBJ)<br> $(RANLIB) $(GDAL_LIB)<br> <br>-$(GDAL_SLIB): $(GDAL_OBJ)<br>+$(GDAL_SLIB): $(GDAL_OBJ) $(GDAL_LIB)<br> $(LD_SHARED) $(GDAL_SLIB_SONAME) $(GDAL_OBJ) $(GDAL_LIBS) $(LIBS) \
<br> -o $(GDAL_SLIB)<br>-------------------- cut --------------------<br><br>