aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gpe-confd
diff options
context:
space:
mode:
authorAndrea Adami <andrea.adami@gmail.com>2009-05-01 15:51:47 +0200
committerAndrea Adami <andrea.adami@gmail.com>2009-05-01 15:51:47 +0200
commit256ed158c755c4b4334bb59cc58051b4a53efb63 (patch)
tree0412bbabc8ffa96e7dad3d9f7ac7098a3e3ff1ec /recipes/gpe-confd
parent0fce2a2207202d69cff97f007887ba8dc2c715d3 (diff)
downloadopenembedded-256ed158c755c4b4334bb59cc58051b4a53efb63.tar.gz
gpe-confd: Makefile fix - don't strip on install
Diffstat (limited to 'recipes/gpe-confd')
-rw-r--r--recipes/gpe-confd/files/makefile-fix.patch11
-rw-r--r--recipes/gpe-confd/gpe-confd_0.16.bb1
2 files changed, 12 insertions, 0 deletions
diff --git a/recipes/gpe-confd/files/makefile-fix.patch b/recipes/gpe-confd/files/makefile-fix.patch
new file mode 100644
index 0000000000..ac3483e1c5
--- /dev/null
+++ b/recipes/gpe-confd/files/makefile-fix.patch
@@ -0,0 +1,11 @@
+--- /tmp/Makefile.old 2004-08-29 13:59:52.000000000 +0200
++++ gpe-confd-0.16/Makefile 2009-05-01 15:33:00.000000000 +0200
+@@ -32,7 +32,7 @@
+
+ install-program: $(PACKAGE)
+ install -d $(DESTDIR)$(PREFIX)/bin
+- install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++ install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
+ mkdir -p $(DESTDIR)/etc/X11/Xsession.d
+ install $(PACKAGE).xs $(DESTDIR)/etc/X11/Xsession.d/70gpe-confd
+
diff --git a/recipes/gpe-confd/gpe-confd_0.16.bb b/recipes/gpe-confd/gpe-confd_0.16.bb
index b9c31029e2..6b5010784b 100644
--- a/recipes/gpe-confd/gpe-confd_0.16.bb
+++ b/recipes/gpe-confd/gpe-confd_0.16.bb
@@ -6,3 +6,4 @@ DESCRIPTION = "GPE configuration daemon"
LICENSE = "GPL"
PR = "r1"
+SRC_URI += "file://makefile-fix.patch;patch=1"