diff options
author | Ted Trask <ttrask01@yahoo.com> | 2012-12-11 02:19:03 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2012-12-11 02:19:03 +0000 |
commit | dc56545ae7253791613d3509e3ab53b692c2e5bb (patch) | |
tree | bcfaef138759436a98b1bb0e0b8598a0b1de854c /testing/lua-subprocess/makefile.patch | |
parent | ea40b3bdf38866009a47aa402ce3f973aa731eb0 (diff) | |
download | aports-dc56545ae7253791613d3509e3ab53b692c2e5bb.tar.bz2 aports-dc56545ae7253791613d3509e3ab53b692c2e5bb.tar.xz |
testing/lua-subprocess: new aport
Diffstat (limited to 'testing/lua-subprocess/makefile.patch')
-rw-r--r-- | testing/lua-subprocess/makefile.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/lua-subprocess/makefile.patch b/testing/lua-subprocess/makefile.patch new file mode 100644 index 0000000000..7567ca92ce --- /dev/null +++ b/testing/lua-subprocess/makefile.patch @@ -0,0 +1,12 @@ +--- ./src/lua-subprocess-20121211/Makefile ++++ ./Makefile +@@ -36,7 +36,8 @@ + + .PHONY: install + install: subprocess.so +- $(INSTALL) -m755 subprocess.so $(INSTALL_CMOD)/ ++ mkdir -p $(DESTDIR)$(INSTALL_CMOD)/ ++ $(INSTALL) -m755 subprocess.so $(DESTDIR)$(INSTALL_CMOD)/ + + .PHONY: uninstall + uninstall: |