3187b11
diff -up exiv2-0.18-pre2/src/Makefile.deps exiv2-0.18-pre2/src/Makefile
3187b11
--- exiv2-0.18-pre2/src/Makefile.deps	2008-09-18 05:26:58.000000000 -0500
3187b11
+++ exiv2-0.18-pre2/src/Makefile	2008-11-29 05:46:14.000000000 -0600
3187b11
@@ -192,11 +192,19 @@ $(CCOBJ): %.o: %.cpp
3187b11
 	@$(LIBTOOL) --mode=compile $(COMPILE.cc) -DEXV_BUILDING_LIB=1 -o $@ $<
3187b11
 	@$(MAKEDEPEND)
3187b11
 	@$(POSTDEPEND)
3187b11
+# The dependancies here are wrong.  It generates .lo output,
3187b11
+# so things are rebuilt *every* time 'make' is called.
3187b11
+# Let's try a quick-n-dirty hack -- Rex
3187b11
+	touch $@
3187b11
 
3187b11
 $(COBJ): %.o: %.c
3187b11
 	@$(LIBTOOL) --mode=compile $(COMPILE.c) -DEXV_BUILDING_LIB=1 -o $@ $<
3187b11
 	@$(MAKEDEPEND)
3187b11
 	@$(POSTDEPEND)
3187b11
+# The dependancies here are wrong.  It generates .lo output,
3187b11
+# so things are rebuilt *every* time 'make' is called.
3187b11
+# Let's try a quick-n-dirty hack -- Rex
3187b11
+	touch $@
3187b11
 
3187b11
 $(sort $(BINOBJ) $(EXIV2OBJ) $(MCOBJ) path-test.o): %.o: %.cpp
3187b11
 	$(COMPILE.cc) -o $@ $<