diff options
author | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2012-10-21 19:51:39 -0200 |
---|---|---|
committer | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2012-10-21 19:51:39 -0200 |
commit | ee7f9096475e0ea57d9326d087f94e3df4c6512b (patch) | |
tree | 0e9b42a4cb590b3c59632a91b519e0bacac38bd3 /java/java-rxtx/destdir.patch | |
parent | b4ce63a23bfc79192dfc546c4196ec651dd31393 (diff) | |
parent | b09b1d60e80ef66c0817fcc7466a20ec5a365520 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'java/java-rxtx/destdir.patch')
-rw-r--r-- | java/java-rxtx/destdir.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/java/java-rxtx/destdir.patch b/java/java-rxtx/destdir.patch new file mode 100644 index 000000000..11416841f --- /dev/null +++ b/java/java-rxtx/destdir.patch @@ -0,0 +1,20 @@ +--- Makefile.in.orig 2012-09-21 15:21:00.000000000 -0400 ++++ Makefile.in 2012-09-21 15:21:07.000000000 -0400 +@@ -566,13 +566,15 @@ + # install librxtxSerial.so into the proper directory and copy $(JARTARGET) to its + # proper location + install: all ++ $(mkinstalldirs) $(DESTDIR)$(RXTX_PATH) ++ $(mkinstalldirs) $(DESTDIR)$(JHOME) + @$(LIBTOOL_INST) \ + `for i in $(TARGETLIB);do \ + if [ -f $$i ];then \ + echo $$i; \ + fi; \ +- done` $(RXTX_PATH) +- $(INSTALL_PROGRAM) $(JARTARGET) $(JHOME)/ ++ done` $(DESTDIR)$(RXTX_PATH) ++ $(INSTALL_PROGRAM) $(JARTARGET) $(DESTDIR)$(JHOME)/ + + clean-generic: + rm -rf $(DEST) $(TOP)/$(CLASSTOP) |