Created
February 7, 2012 16:19
-
-
Save medigeek/1760505 to your computer and use it in GitHub Desktop.
glossa-interpreter: Fix Makefile (quilt patch)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From: Savvas Radevic <[email protected]> | |
Description: Create /usr/bin in the destination folder | |
Index: glossa-interpreter-1.0.1/Makefile | |
=================================================================== | |
--- glossa-interpreter-1.0.1.orig/Makefile 2012-02-07 17:14:00.000000000 +0100 | |
+++ glossa-interpreter-1.0.1/Makefile 2012-02-07 17:14:01.000000000 +0100 | |
@@ -36,6 +36,7 @@ | |
install: | |
mkdir -p $(DESTDIR)/usr/share/java | |
+ mkdir -p $(DESTDIR)/usr/bin/ | |
cp dist/glossa-interpreter.jar $(DESTDIR)/usr/share/java/glossa-interpreter.jar | |
cp glossa-interpreter $(DESTDIR)/usr/bin/glossa-interpreter | |
chmod ugo+x $(DESTDIR)/usr/bin/glossa-interpreter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment