mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
be505ba5df
to a char **. Instead, iterate the va_list and create the char ** to pass to execvp. . Don't allow -O3 to be hardwired into CFLAGS, just use what is set. In particular, the 4.x/alpha system gcc produces many warnings about why using -O3 with it is bad. . Bump PORTREVISION since although these fixes wre motivated to fix the alpha build, they have non-alpha implications too. Submitted by: bento
13 lines
292 B
Plaintext
13 lines
292 B
Plaintext
$FreeBSD$
|
|
|
|
--- utils/Makefile.orig Fri Jan 30 12:38:36 2004
|
|
+++ utils/Makefile Fri Jan 30 12:38:50 2004
|
|
@@ -1,6 +1,6 @@
|
|
include ../config
|
|
export LC_ALL=C
|
|
-CFLAGS+=-O3 -s
|
|
+CFLAGS+=-s
|
|
#PROGRAMS=getch mkkeydef bin2byte
|
|
PROGRAMS=bin2byte
|
|
EXEPROGRAMS= $(patsubst %,%$(EXEEXT),$(PROGRAMS))
|