patch-images_Makefile_in 1.4 KB

1234567891011121314151617181920212223242526
  1. $OpenBSD: patch-images_Makefile_in,v 1.1 2015/12/04 13:58:42 sthen Exp $
  2. XXX This fails with SIGABRT:
  3. synfig -q splash_screen-1.0.1.sif -o splash_screen.png --time 0
  4. synfig(1645) [06:33:36] info: Loading modules from /etc/synfig_modules.cfg
  5. /usr/local/bin/synfig: warning: Unable to find module "mod_libavcodec" (file not found)
  6. synfig(1645) [06:33:36] info: Loading file: splash_screen-1.0.1.sif
  7. synfig(1645) [06:33:36] info: Loading file: ./splash_screen-1.0.x.sif
  8. Makefile:1367: recipe for target 'splash_screen.png' failed
  9. So just use 1.0.x.sif for now, it misses out the version number on the splash
  10. screen, but avoids the failure.
  11. --- images/Makefile.in.orig Fri Dec 4 06:48:01 2015
  12. +++ images/Makefile.in Fri Dec 4 06:52:53 2015
  13. @@ -1363,7 +1363,7 @@ action_doc_redo_icon.$(EXT): $(srcdir)/action_doc_icon
  14. @DEVELOPMENT_SNAPSHOT_TRUE@ echo " File \"images\\$@\"" >>./images.nsh
  15. @DEVELOPMENT_SNAPSHOT_TRUE@ echo " Delete \"\$$INSTDIR\\share\\pixmaps\\$@\"" >>./unimages.nsh
  16. @DEVELOPMENT_SNAPSHOT_TRUE@.PHONY: splash_screen_development.sif
  17. -@DEVELOPMENT_SNAPSHOT_FALSE@splash_screen.$(EXT): $(srcdir)/splash_screen-$(PACKAGE_VERSION).sif
  18. +@DEVELOPMENT_SNAPSHOT_FALSE@splash_screen.$(EXT): $(srcdir)/splash_screen-1.0.x.sif
  19. @DEVELOPMENT_SNAPSHOT_FALSE@ $(SYNFIG) -q $< -o $@ --time 0
  20. @DEVELOPMENT_SNAPSHOT_FALSE@ echo " File \"images\\$@\"" >>./images.nsh
  21. @DEVELOPMENT_SNAPSHOT_FALSE@ echo " Delete \"\$$INSTDIR\\share\\pixmaps\\$@\"" >>./unimages.nsh