diff options
author | Andrea Adami <andrea.adami@gmail.com> | 2009-05-01 16:47:48 +0200 |
---|---|---|
committer | Andrea Adami <andrea.adami@gmail.com> | 2009-05-01 16:47:48 +0200 |
commit | aed989bee84635625b1af33907fe082df6de163f (patch) | |
tree | e6754729ee8df5680d81128d301bc90a384bf0d1 /recipes/minilite/files | |
parent | 17c1e6796e06e87d00f69ade3d36e23caa95ab45 (diff) |
minilite: Makefile fix - don't strip on install
Diffstat (limited to 'recipes/minilite/files')
-rw-r--r-- | recipes/minilite/files/makefile-fix.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/recipes/minilite/files/makefile-fix.patch b/recipes/minilite/files/makefile-fix.patch new file mode 100644 index 0000000000..1be6ceaa8b --- /dev/null +++ b/recipes/minilite/files/makefile-fix.patch @@ -0,0 +1,11 @@ +--- /tmp/Makefile.old 2006-01-16 22:51:34.000000000 +0100 ++++ minilite-050/Makefile 2009-05-01 16:36:32.000000000 +0200 +@@ -45,7 +45,7 @@ + + install-program: all + mkdir -p $(DESTDIR)$(PREFIX)/bin +- $(INSTALL) -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE) ++ $(INSTALL) $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE) + mkdir -p $(DESTDIR)$(PREFIX)/share/applications + $(INSTALL) -m 644 $(PACKAGE).desktop $(DESTDIR)$(PREFIX)/share/applications/$(PACKAGE).desktop + mkdir -p $(DESTDIR)$(PREFIX)/share/pixmaps/ |