summaryrefslogtreecommitdiff
path: root/security/cksfv/files/patch-src-Makefile
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2005-07-21 09:03:48 +0000
committerPav Lucistnik <pav@FreeBSD.org>2005-07-21 09:03:48 +0000
commit83cb040fb22e466ec4ae6b9e4c217fb522a29c56 (patch)
tree373bfbf1d8697847cc7c01a4c3862c76f3735922 /security/cksfv/files/patch-src-Makefile
parentUpdate to the 20050719 snapshot of GCC 3.4.5. Should now work on FreeBSD 7. (diff)
- Update to 1.3.5
PR: ports/83823 Submitted by: Travis Poppe <tlp@liquidx.org>
Notes
Notes: svn path=/head/; revision=139803
Diffstat (limited to 'security/cksfv/files/patch-src-Makefile')
-rw-r--r--security/cksfv/files/patch-src-Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/security/cksfv/files/patch-src-Makefile b/security/cksfv/files/patch-src-Makefile
deleted file mode 100644
index 07e1f278a9d6..000000000000
--- a/security/cksfv/files/patch-src-Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
---- src/Makefile.orig Fri Jul 6 02:33:08 2001
-+++ src/Makefile Fri Jul 6 05:14:05 2001
-@@ -17,14 +17,15 @@
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
- PROG= cksfv
--CFLAGS+= -Wall -Werror -O2 -g
-+CC?= gcc
-+CFLAGS+= -Wall -g
- SRCS= cksfv.c print.c crc32.c readsfv.c newsfv.c
-
- cksfv: $(SRCS)
-- gcc -DVERSION=\"$(VERSION)\" $(CFLAGS) -o $(PROG) $(SRCS)
-+ $(CC) -DVERSION=\"$(VERSION)\" $(CFLAGS) -o $(PROG) $(SRCS)
-
- install: cksfv
-- cp $(PROG) /usr/local/bin
-+ $(BSD_INSTALL_PROGRAM) $(PROG) $(PREFIX)/bin
-
- clean:
- rm -f *.o *~ *.core core $(PROG)