summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/pciutils/pciutils/makefile.patch
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2014-10-16 03:05:19 +0200
committerTudor Florea <tudor.florea@enea.com>2014-10-16 03:05:19 +0200
commitc527fd1f14c27855a37f2e8ac5346ce8d940ced2 (patch)
treebb002c1fdf011c41dbd2f0927bed23ecb5f83c97 /meta/recipes-bsp/pciutils/pciutils/makefile.patch
downloadpoky-daisy-140929.tar.gz
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta/recipes-bsp/pciutils/pciutils/makefile.patch')
-rw-r--r--meta/recipes-bsp/pciutils/pciutils/makefile.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/meta/recipes-bsp/pciutils/pciutils/makefile.patch b/meta/recipes-bsp/pciutils/pciutils/makefile.patch
new file mode 100644
index 0000000000..c3fbc6f9b1
--- /dev/null
+++ b/meta/recipes-bsp/pciutils/pciutils/makefile.patch
@@ -0,0 +1,26 @@
1Upstream-Status: Inappropriate [configuration]
2
3Signed-off-by: Ionut Radu <ionutx.radu@intel.com>
4
5Index: pciutils-3.2.0/Makefile
6===================================================================
7--- pciutils-3.2.0.orig/Makefile
8+++ pciutils-3.2.0/Makefile
9@@ -35,7 +35,7 @@ SHAREDIR=$(PREFIX)/share
10 IDSDIR=$(SHAREDIR)
11 MANDIR:=$(shell if [ -d $(PREFIX)/share/man ] ; then echo $(PREFIX)/share/man ; else echo $(PREFIX)/man ; fi)
12 INCDIR=$(PREFIX)/include
13-LIBDIR=$(PREFIX)/lib
14+LIBDIR=$(libdir)
15 PKGCFDIR=$(LIBDIR)/pkgconfig
16
17 # Commands
18@@ -94,7 +94,7 @@ example: example.o lib/$(PCILIB_DEV)
19 example.o: example.c $(PCIINC)
20
21 %: %.o
22- $(CC) $(LDFLAGS) $(TARGET_ARCH) $^ $(LIB_LDLIBS) -o $@
23+ $(CC) $(LDFLAGS) $(TARGET_ARCH) $^ $(LIB_LDLIBS) $(LDLIBS) -o $@
24
25 %.8 %.7: %.man
26 M=`echo $(DATE) | sed 's/-01-/-January-/;s/-02-/-February-/;s/-03-/-March-/;s/-04-/-April-/;s/-05-/-May-/;s/-06-/-June-/;s/-07-/-July-/;s/-08-/-August-/;s/-09-/-September-/;s/-10-/-October-/;s/-11-/-November-/;s/-12-/-December-/;s/\(.*\)-\(.*\)-\(.*\)/\3 \2 \1/'` ; sed <$< >$@ "s/@TODAY@/$$M/;s/@VERSION@/pciutils-$(VERSION)/;s#@IDSDIR@#$(IDSDIR)#"