summaryrefslogtreecommitdiff
path: root/dev-libs/libx86/files/libx86-1.1-makefile.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-libs/libx86/files/libx86-1.1-makefile.patch
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-libs/libx86/files/libx86-1.1-makefile.patch')
-rw-r--r--dev-libs/libx86/files/libx86-1.1-makefile.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/dev-libs/libx86/files/libx86-1.1-makefile.patch b/dev-libs/libx86/files/libx86-1.1-makefile.patch
deleted file mode 100644
index 471c3fbc78fd..000000000000
--- a/dev-libs/libx86/files/libx86-1.1-makefile.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- Makefile.orig 2013-02-11 16:35:56.834368910 +0400
-+++ Makefile 2013-02-11 16:36:02.587369368 +0400
-@@ -22,7 +22,7 @@
- $(AR) cru libx86.a $(OBJECTS)
-
- shared: $(OBJECTS)
-- $(CC) $(CFLAGS) -o libx86.so.1 -shared -Wl,-soname,libx86.so.1 $(OBJECTS)
-+ $(CC) $(CFLAGS) $(LDFLAGS) -o libx86.so.1 -shared -Wl,-soname,libx86.so.1 $(OBJECTS)
-
- objclean:
- $(MAKE) -C x86emu clean
-@@ -31,8 +31,14 @@
- clean: objclean
- rm -f *.so.1 *.a
-
--install: libx86.so.1
-+install-shared: libx86.so.1
- install -D libx86.so.1 $(DESTDIR)$(LIBDIR)/libx86.so.1
-- install -D libx86.a $(DESTDIR)$(LIBDIR)/libx86.a
- ln -sf libx86.so.1 $(DESTDIR)$(LIBDIR)/libx86.so
-+
-+install-header:
- install -p -m 0644 -D lrmi.h $(DESTDIR)/usr/include/libx86.h
-+
-+install-static:
-+ install -D libx86.a $(DESTDIR)$(LIBDIR)/libx86.a
-+
-+install: install-shared install-static install-header