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&nbsp;&nbsp;&nbsp; 2006-03-24 08:51:56.000000000 -0800<br>+++ gdal-1.3.2/GNUmakefile&nbsp;&nbsp;&nbsp; 2006-09-19 12:25:36.000000000 -0700<br>@@ -35,7 +35,7 @@
<br>&nbsp;&nbsp;&nbsp;&nbsp; $(AR) r $(GDAL_LIB) $(GDAL_OBJ)<br>&nbsp;&nbsp;&nbsp;&nbsp; $(RANLIB) $(GDAL_LIB)<br>&nbsp;<br>-$(GDAL_SLIB):&nbsp;&nbsp;&nbsp; $(GDAL_OBJ)<br>+$(GDAL_SLIB):&nbsp;&nbsp;&nbsp; $(GDAL_OBJ) $(GDAL_LIB)<br>&nbsp;&nbsp;&nbsp;&nbsp; $(LD_SHARED) $(GDAL_SLIB_SONAME) $(GDAL_OBJ) $(GDAL_LIBS) $(LIBS) \
<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; -o $(GDAL_SLIB)<br>-------------------- cut --------------------<br><br>