summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-arch/pbzip2/files/pbzip2-1.0.5-ldflags.patch')
-rw-r--r--app-arch/pbzip2/files/pbzip2-1.0.5-ldflags.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/app-arch/pbzip2/files/pbzip2-1.0.5-ldflags.patch b/app-arch/pbzip2/files/pbzip2-1.0.5-ldflags.patch
deleted file mode 100644
index 3042b30ea275..000000000000
--- a/app-arch/pbzip2/files/pbzip2-1.0.5-ldflags.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- pbzip2-1.0.5/Makefile.orig 2009-03-20 20:52:48.000000000 +0100
-+++ pbzip2-1.0.5/Makefile 2009-03-20 20:54:30.000000000 +0100
-@@ -21,11 +21,11 @@
-
- # Standard pbzip2 compile
- pbzip2: pbzip2.cpp
-- $(CC) $(CFLAGS) $^ -o pbzip2 -pthread -lpthread -lbz2
-+ $(CC) $(CFLAGS) $(LDFLAGS) $^ -o pbzip2 -pthread -lpthread -lbz2
-
- # Choose this if you want to compile in a static version of the libbz2 library
- pbzip2-static: pbzip2.cpp libbz2.a
-- $(CC) $(CFLAGS) $^ -o pbzip2 -pthread -lpthread -I. -L. -lbz2
-+ $(CC) $(CFLAGS) $(LDFLAGS) $^ -o pbzip2 -pthread -lpthread -I. -L. -lbz2
-
- # Install the binary pbzip2 program and man page
- install: pbzip2