diff options
author | Andrea Adami <andrea.adami@gmail.com> | 2009-05-01 21:56:24 +0200 |
---|---|---|
committer | Andrea Adami <andrea.adami@gmail.com> | 2009-05-01 21:58:19 +0200 |
commit | 832bb431529c7ebe0601d3b0d3713391f532c6fa (patch) | |
tree | b04e2c8bd22d6c0169a9e203364c566e0a4d58f2 /recipes/keylaunch | |
parent | c9c54dff2274b232ffb294eb112a707bdb08979c (diff) |
keylaunch: Makefile fix - don't strip on install
Diffstat (limited to 'recipes/keylaunch')
-rw-r--r-- | recipes/keylaunch/files/makefile-fix.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/keylaunch/files/makefile-fix.patch b/recipes/keylaunch/files/makefile-fix.patch index d9c57e05ac..0e53e4e7f1 100644 --- a/recipes/keylaunch/files/makefile-fix.patch +++ b/recipes/keylaunch/files/makefile-fix.patch @@ -7,7 +7,7 @@ - install -sD $(PROG) $(DESTDIR)$(PREFIX)/bin/$(PROG) - install -D -m 644 $(PROG)rc $(DESTDIR)/etc/$(PROG)rc + install -d $(DESTDIR)$(PREFIX)/bin -+ install -s $(PROG) $(DESTDIR)$(PREFIX)/bin/$(PROG) ++ install $(PROG) $(DESTDIR)$(PREFIX)/bin/$(PROG) + install -d $(DESTDIR)/etc + install -m 644 $(PROG)rc $(DESTDIR)/etc/$(PROG)rc install -d $(DESTDIR)/etc/X11/Xsession.d |