diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2019-02-19 22:34:13 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2019-02-19 22:34:13 +0000 |
commit | 8c64f112e83f10e56a4c898eec73f65b43db8222 (patch) | |
tree | 05bd97f05910d157053dd2e7214bb3cb5a51769a /regress | |
parent | a523f82320a26b6cd59d6f08906c1b2d4422c8c7 (diff) |
Use $CC instead of gcc, the latter does not exist on arm64.
found by Moritz Buhl
Diffstat (limited to 'regress')
-rw-r--r-- | regress/usr.sbin/ospfd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.sbin/ospfd/Makefile b/regress/usr.sbin/ospfd/Makefile index e3246b3b289..0320f6699cd 100644 --- a/regress/usr.sbin/ospfd/Makefile +++ b/regress/usr.sbin/ospfd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.9 2019/02/19 16:51:49 bluhm Exp $ +# $OpenBSD: Makefile,v 1.10 2019/02/19 22:34:12 bluhm Exp $ # The following ports must be installed for the regression tests: # p5-AnyEvent provide framework for multiple event loops @@ -96,7 +96,7 @@ stamp-passfd: PassFd.so .xs.so: xsubpp -prototypes $> >${@:S/.so$/.c/} - gcc -shared -Wall -DNO_LOCALE_NUMERIC -DNO_LOCALE_COLLATE\ + ${CC} -shared -Wall -DNO_LOCALE_NUMERIC -DNO_LOCALE_COLLATE\ -I${PERLHEADER} -o $@ ${@:S/.so$/.c/} perl ${PERLINC} -M${@:R} -e '' |