diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2010-05-28 14:27:09 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2010-05-28 14:27:09 +0000 |
commit | a1b8629a9b765083ee6780be822fed50910310f4 (patch) | |
tree | 0ace41c79deec3e3bc1dfa9aad1aca1d84c60cb3 /sys/arch/gumstix | |
parent | 81dca58a44e932865dbe840e22b75c1509433b02 (diff) |
${PARAM} is now included in ${CPPFLAGS}, so stop passing it separately
to genassym.sh
ok deraadt
Diffstat (limited to 'sys/arch/gumstix')
-rw-r--r-- | sys/arch/gumstix/conf/Makefile.gumstix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/gumstix/conf/Makefile.gumstix b/sys/arch/gumstix/conf/Makefile.gumstix index 61c1bd8feb3..a2a8907855e 100644 --- a/sys/arch/gumstix/conf/Makefile.gumstix +++ b/sys/arch/gumstix/conf/Makefile.gumstix @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.gumstix,v 1.25 2010/05/25 17:27:55 deraadt Exp $ +# $OpenBSD: Makefile.gumstix,v 1.26 2010/05/28 14:27:08 guenther Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -97,7 +97,7 @@ LINKFLAGS+= -x assym.h: $S/kern/genassym.sh Makefile \ ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \ - sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} ${PARAM} | \ + sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} | \ sort -u > assym.h.tmp && \ mv -f assym.h.tmp assym.h |