Merge pull request #2924 from vpeter4/bchunk

bchunk: remove unneeded patch
This commit is contained in:
CvH 2018-08-26 19:13:51 +02:00 committed by GitHub
commit 6476bcfa3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 16 deletions

View File

@ -16,3 +16,7 @@ PKG_LONGDESC="binchunker converts a CD image in a .bin / .cue format (sometimes
makeinstall_target() {
:
}
make_target() {
make $PKG_MAKE_OPTS_TARGET CC=$CC LD=$CC
}

View File

@ -1,16 +0,0 @@
diff -Naur a/Makefile b/Makefile
--- a/Makefile 2001-08-02 05:51:40.000000000 -0700
+++ b/Makefile 2016-10-23 10:47:21.682136676 -0700
@@ -1,9 +1,9 @@
all: bchunk
# For systems with GCC (Linux, and others with GCC installed):
-CC = gcc
-LD = gcc
-CFLAGS = -Wall -Wstrict-prototypes -O2
+CC ?= gcc
+LD = $(CC)
+CFLAGS ?= -Wall -Wstrict-prototypes -O2
# For systems with a legacy CC:
#CC = cc