diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-04-08 18:00:28 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-04-08 18:00:28 +0000 |
commit | 8675b7998a4e21516b5ed4bde81f2fb957c3fa74 (patch) | |
tree | cb24d43cf9bc8980a9746d8fcd0cc5253d299804 /archivers/bitbox/files/patch-makefile | |
parent | Update to 2001.03.26. (diff) |
add bitbox
BitBox is a GPL'd file splitter/joiner utility
Notes
Notes:
svn path=/head/; revision=41080
Diffstat (limited to 'archivers/bitbox/files/patch-makefile')
-rw-r--r-- | archivers/bitbox/files/patch-makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/archivers/bitbox/files/patch-makefile b/archivers/bitbox/files/patch-makefile new file mode 100644 index 000000000000..1b688761fe15 --- /dev/null +++ b/archivers/bitbox/files/patch-makefile @@ -0,0 +1,13 @@ +--- makefile.orig Mon Apr 9 01:41:48 2001 ++++ makefile Mon Apr 2 02:26:37 2001 +@@ -1,8 +1,8 @@ + bitbox: bitbox.o +- gcc bitbox.o -o bitbox -lz ++ ${CC} ${CFLAGS} bitbox.o -o bitbox -lz -L${LOCALBASE}/lib -lgnugetopt + + bitbox.o: bitbox.c bitbox.h +- gcc -Wall -c bitbox.c -o bitbox.o ++ ${CC} ${CFLAGS} -I${LOCALBASE}/include -c bitbox.c -o bitbox.o + + + |