You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-cpp/pngpp/files/pngpp-0.2.9-DESTDIR.patch

16 lines
379 B

Build system does not honour $(DESTDIR)
--- a/Makefile
+++ b/Makefile
@@ -54,8 +54,8 @@
uninstall: uninstall-headers uninstall-docs
install-headers:
- mkdir -p $(PREFIX)/include/png++
- cp $(headers) $(PREFIX)/include/png++
+ mkdir -p $(DESTDIR)$(PREFIX)/include/png++
+ cp $(headers) $(DESTDIR)$(PREFIX)/include/png++
uninstall-headers:
rm -rf $(PREFIX)/include/png++