diff options
author | Koen Kooi <koen@openembedded.org> | 2006-07-26 07:34:47 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2006-07-26 07:34:47 +0000 |
commit | 28786b7206be6d271696666a0b19880d25548920 (patch) | |
tree | eab38c29fd0fef0590d33ae97f328addd90a014c /packages/keylaunch/files | |
parent | f236b09335ecd70d90105126d4b7aeafa8981055 (diff) |
keylaunch: add patch to fix badness with 'install -sD'
Diffstat (limited to 'packages/keylaunch/files')
-rw-r--r-- | packages/keylaunch/files/makefile-fix.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/keylaunch/files/makefile-fix.patch b/packages/keylaunch/files/makefile-fix.patch new file mode 100644 index 0000000000..30275001df --- /dev/null +++ b/packages/keylaunch/files/makefile-fix.patch @@ -0,0 +1,11 @@ +--- /tmp/Makefile 2006-07-26 09:31:43.000000000 +0200 ++++ keylaunch-2.0.10/Makefile 2006-07-26 09:32:23.464411000 +0200 +@@ -31,7 +31,7 @@ + $(CC) $(LDFLAGS) $(OBJS) $(LIBS) -o $@ + + install-program: all +- install -sD $(PROG) $(DESTDIR)$(PREFIX)/bin/$(PROG) ++ install -s -D $(PROG) $(DESTDIR)$(PREFIX)/bin/$(PROG) + install -D -m 644 $(PROG)rc $(DESTDIR)/etc/$(PROG)rc + install -d $(DESTDIR)/etc/X11/Xsession.d + install 90$(PROG) $(DESTDIR)/etc/X11/Xsession.d/90$(PROG) |