mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
6e3631c9da
PR: 15130 Submitted by: Will Andrews <andrews@technologist.com>
21 lines
651 B
Plaintext
21 lines
651 B
Plaintext
--- src/Makefile.in.orig Mon Nov 22 15:37:06 1999
|
|
+++ src/Makefile.in Sun Dec 12 20:56:59 1999
|
|
@@ -27,7 +27,7 @@
|
|
#WNOERROR=-Werror
|
|
#WARNINGS=$(WNOERROR) -ansi -pedantic -Wall -Wtraditional -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline -Dlint
|
|
|
|
-CFLAGS=@CFLAGS@ $(WARNINGS)
|
|
+CFLAGS?=@CFLAGS@ $(WARNINGS)
|
|
YACC=@YACC@
|
|
NETLIBS=@LIBS@
|
|
LDFLAGS=@LDFLAGS@
|
|
@@ -70,7 +70,7 @@
|
|
$(YACC) getdate.y
|
|
@mv -f y.tab.c getdate.c
|
|
|
|
-install: all
|
|
+install:
|
|
@if [ ! -d $(bindir) ]; then mkdir -p $(bindir); fi
|
|
$(INSTALL_PROG) -s -c -m 0755 hypermail$(SUFFIX) $(bindir)
|
|
|