1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/sysutils/gpart/files/patch-ab
Akinori MUSHA 8ae5d2d4f9 - Update to 0.1g.
- Respect CC and PREFIX.
- Add a knob to build a static binary. (which is useful to put on a
fixit floppy etc.)

Approved by:	Andrew Stevenson <andrew@ugh.net.au> (MAINTAINER)
2000-09-16 09:15:16 +00:00

17 lines
288 B
Plaintext

--- make.defs.orig Sun May 14 21:07:18 2000
+++ make.defs Sat Sep 16 17:44:32 2000
@@ -1,10 +1,10 @@
#
#
#
-CC = gcc
-CFLAGS = -Wall -O2 -pedantic
+CC ?= gcc
+CFLAGS += -Wall -pedantic
LDFLAGS =
-MAKEDEP = gcc -M
+MAKEDEP = $(CC) -M
INSTALL = install
RM = rm -f
#