summaryrefslogtreecommitdiff
path: root/package/bzip2
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-12-29 02:02:04 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2009-12-29 02:02:04 +0100
commit0b9bf7c336b992c90e764c327b945bf8ee20a202 (patch)
treeeadbc4b1dbf563b37284aa6c70b78867a5bd98c1 /package/bzip2
parent42bf426caea1d9ce4b6f92befa71cfb1df5f7458 (diff)
remove unused files
Diffstat (limited to 'package/bzip2')
-rw-r--r--package/bzip2/patches/patch-Makefile.orig34
1 files changed, 0 insertions, 34 deletions
diff --git a/package/bzip2/patches/patch-Makefile.orig b/package/bzip2/patches/patch-Makefile.orig
deleted file mode 100644
index 4884c38ee..000000000
--- a/package/bzip2/patches/patch-Makefile.orig
+++ /dev/null
@@ -1,34 +0,0 @@
---- bzip2-1.0.5.orig/Makefile 2008-02-14 13:39:18.000000000 +0100
-+++ bzip2-1.0.5/Makefile 2009-08-23 20:16:24.000000000 +0200
-@@ -15,16 +15,16 @@
- SHELL=/bin/sh
-
- # To assist in cross-compiling
--CC=gcc
--AR=ar
--RANLIB=ranlib
--LDFLAGS=
-+CC?=gcc
-+AR?=ar
-+RANLIB?=ranlib
-+LDFLAGS?=
-
- BIGFILES=-D_FILE_OFFSET_BITS=64
--CFLAGS=-Wall -Winline -O2 -g $(BIGFILES)
-+CFLAGS?=-Wall -Winline -O2 -g $(BIGFILES)
-
- # Where you want it installed when you do 'make install'
--PREFIX=/usr/local
-+PREFIX=/usr
-
-
- OBJS= blocksort.o \
-@@ -35,7 +35,7 @@ OBJS= blocksort.o \
- decompress.o \
- bzlib.o
-
--all: libbz2.a bzip2 bzip2recover test
-+all: libbz2.a bzip2 bzip2recover
-
- bzip2: libbz2.a bzip2.o
- $(CC) $(CFLAGS) $(LDFLAGS) -o bzip2 bzip2.o -L. -lbz2