diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-03-22 15:16:45 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-03-22 15:16:45 +0000 |
commit | 6884a49c72811d5efef8202c083321dec85c8558 (patch) | |
tree | 8206f96603f870c97ca78361060c1db824ce0cd2 /sbin | |
parent | a03523cf94042c48c61b6ad3e6dfffa05326773e (diff) |
BSD/OS make treats ${A:S/a/x/} like ${A:S/a/x/1}, so we use ${A:S/a/x/g}.
this works on both systems (for this special case).
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/isakmpd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/isakmpd/Makefile b/sbin/isakmpd/Makefile index e0251550cdc..531fbd33a29 100644 --- a/sbin/isakmpd/Makefile +++ b/sbin/isakmpd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.32 2001/02/24 04:42:47 angelos Exp $ +# $OpenBSD: Makefile,v 1.33 2001/03/22 15:16:44 markus Exp $ # $EOM: Makefile,v 1.78 2000/10/15 21:33:42 niklas Exp $ # @@ -129,7 +129,7 @@ SUBDIR= apps .if ${FEATURES} != "" FEATURES_UC!= echo ${FEATURES} | tr '[:lower:]' '[:upper:]' -CFLAGS+= ${FEATURES_UC:S/^/-DUSE_/} +CFLAGS+= ${FEATURES_UC:S/^/-DUSE_/g} .endif .if make(install) |