exiv2-0.18-deps.patch 923 B

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