summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/hexedit/hexedit/0001-don-t-strip-when-installing.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-extended/hexedit/hexedit/0001-don-t-strip-when-installing.patch')
-rw-r--r--meta-oe/recipes-extended/hexedit/hexedit/0001-don-t-strip-when-installing.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/hexedit/hexedit/0001-don-t-strip-when-installing.patch b/meta-oe/recipes-extended/hexedit/hexedit/0001-don-t-strip-when-installing.patch
new file mode 100644
index 000000000..a384b05ce
--- /dev/null
+++ b/meta-oe/recipes-extended/hexedit/hexedit/0001-don-t-strip-when-installing.patch
@@ -0,0 +1,30 @@
1From cc67246ca6839e5b3f6a286f10ed24c225b77a5e Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Eric=20B=C3=A9nard?= <eric@eukrea.com>
3Date: Thu, 4 Jul 2013 12:34:32 +0200
4Subject: [PATCH] don't strip when installing
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9Signed-off-by: Eric BĂ©nard <eric@eukrea.com>
10
11Upstream-Status: Inappropriate [configuration]
12---
13 Makefile.in | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/Makefile.in b/Makefile.in
17index 159463e..735cc72 100644
18--- a/Makefile.in
19+++ b/Makefile.in
20@@ -42,6 +42,6 @@ distclean: clean
21
22 install: $(PRODUCT)
23 $(INSTALL) -d -m 755 $(DESTDIR)$(bindir)
24- $(INSTALL) -s -m 755 $(PRODUCT) $(DESTDIR)$(bindir)
25+ $(INSTALL) -m 755 $(PRODUCT) $(DESTDIR)$(bindir)
26 $(INSTALL) -d -m 755 $(DESTDIR)$(mandir)/man1
27 $(INSTALL) -m 644 $(PRODUCT).1 $(DESTDIR)$(mandir)/man1
28--
291.7.10.4
30