From 108b50b1000c4844d3d42684bf73a8acbcf535a9 Mon Sep 17 00:00:00 2001 From: midipix Date: Tue, 1 Jan 2019 04:38:41 -0500 Subject: build system: ccenv_set_cc_underscore(): avoid the __imp_foo false positive. --- sofort/ccenv/ccenv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index 6d8f13e..d6876c7 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -471,7 +471,7 @@ ccenv_set_cc_underscore() printf "$ccenv_fn_code" $ccenv_fn_name \ | $ccenv_cc -xc - -S -o - \ - | grep _$ccenv_fn_name \ + | grep "^_$ccenv_fn_name:" \ > /dev/null \ && ccenv_cc_underscore='_' -- cgit v1.2.3