diff options
-rw-r--r-- | mk/configure/check-portability.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mk/configure/check-portability.mk b/mk/configure/check-portability.mk index 36b9b3a9cd5..cc66bc48c4f 100644 --- a/mk/configure/check-portability.mk +++ b/mk/configure/check-portability.mk @@ -1,4 +1,4 @@ -# $NetBSD: check-portability.mk,v 1.3 2006/10/05 02:58:28 rillig Exp $ +# $NetBSD: check-portability.mk,v 1.4 2006/10/05 10:52:40 rillig Exp $ # # This file contains some checks that are applied to the configure # scripts to check for certain constructs that are known to cause @@ -46,6 +46,8 @@ _configure-check-for-test: if [ ":$$1" = ":test" ] && [ ":$$3" = ":==" ]; then \ found=yes; \ ${ERROR_MSG} "[configure.mk] $$line"; \ + elif [ ":$$1" = ":#" ]; then \ + break; \ fi; \ shift; \ done; \ |