1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: make sure there is a usr/bin/ directory to install to
Author: IOhannes m zmölnig
Last-Update: 2013-12-18
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- pd-pdp.orig/Makefile
+++ pd-pdp/Makefile
@@ -76,6 +76,7 @@
install -m 644 doc/reference.txt $(DESTDIR)$(prefix)/lib/pd/extra/pdp
install -m 644 doc/introduction/*.pd $(DESTDIR)$(prefix)/lib/pd/extra/pdp/introduction
install -m 644 doc/examples/*.pd $(DESTDIR)$(prefix)/lib/pd/extra/pdp/examples
+ install -d $(DESTDIR)$(prefix)/bin
install -m 755 bin/pdp-config $(DESTDIR)$(prefix)/bin
snapshot:
|