diff options
author | 2005-10-08 11:53:38 +0000 | |
---|---|---|
committer | 2005-10-08 11:53:38 +0000 | |
commit | 4b5190a7de8561bea897a4789e6cc23a4551d60f (patch) | |
tree | c6b28e46c04e8a019f413a73cbad665751f6845b /dev-libs/libnl/files | |
parent | Fixed sse compile error issue. Bug 108460. (diff) | |
download | historical-4b5190a7de8561bea897a4789e6cc23a4551d60f.tar.gz historical-4b5190a7de8561bea897a4789e6cc23a4551d60f.tar.bz2 historical-4b5190a7de8561bea897a4789e6cc23a4551d60f.zip |
keyword ~amd64 and make multilib-strict happy
Package-Manager: portage-2.0.51.22-r3
Diffstat (limited to 'dev-libs/libnl/files')
-rw-r--r-- | dev-libs/libnl/files/libnl-0.5.0-libdir.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-libs/libnl/files/libnl-0.5.0-libdir.patch b/dev-libs/libnl/files/libnl-0.5.0-libdir.patch new file mode 100644 index 000000000000..e9200ff54e02 --- /dev/null +++ b/dev-libs/libnl/files/libnl-0.5.0-libdir.patch @@ -0,0 +1,30 @@ +--- lib/Makefile 2005-04-05 01:08:04.000000000 +0200 ++++ lib/Makefile 2005-10-08 13:15:52.000000000 +0200 +@@ -22,6 +22,8 @@ + include ../Makefile.opts + endif + ++LIBDIR=$(prefix)/lib ++ + # Core + CIN := $(wildcard *.c) + # NETLINK_ROUTE +@@ -67,12 +69,12 @@ + find .deps -iname \*\.d -exec rm -f '{}' \; + + install: +- mkdir -p $(DESTDIR)$(prefix)/lib/ +- install -o root -g root -m 0644 $(OUT_SLIB) $(DESTDIR)$(prefix)/lib +- rm -f $(DESTDIR)$(prefix)/lib/$(LN1_SLIB) ; \ +- $(LN) -s $(DESTDIR)$(prefix)/lib/$(OUT_SLIB) $(DESTDIR)$(prefix)/lib/$(LN1_SLIB) +- rm -f $(DESTDIR)$(prefix)/lib/$(LN_SLIB) ; \ +- $(LN) -s $(DESTDIR)$(prefix)/lib/$(LN1_SLIB) $(DESTDIR)$(prefix)/lib/$(LN_SLIB) ++ mkdir -p $(DESTDIR)$(LIBDIR)/ ++ install -o root -g root -m 0644 $(OUT_SLIB) $(DESTDIR)$(LIBDIR) ++ rm -f $(DESTDIR)$(LIBDIR)/$(LN1_SLIB) ; \ ++ $(LN) -s $(DESTDIR)$(LIBDIR)/$(OUT_SLIB) $(DESTDIR)$(LIBDIR)/$(LN1_SLIB) ++ rm -f $(DESTDIR)$(LIBDIR)/$(LN_SLIB) ; \ ++ $(LN) -s $(DESTDIR)$(LIBDIR)/$(LN1_SLIB) $(DESTDIR)$(LIBDIR)/$(LN_SLIB) + + $(DEPS): ../Makefile.opts + |