diff options
author | midipix <writeonce@midipix.org> | 2019-01-01 04:38:41 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-01 04:42:16 -0500 |
commit | cb660ee8afab6bdc301503b918390cbc0af6f92d (patch) | |
tree | 0a867de99011d4a4b9ef41ac7f259b174af7d5a0 /sofort/ccenv | |
parent | e35a1a9c69b48d09f0990d8e66b6c0baf289620e (diff) | |
download | apimagic-cb660ee8afab6bdc301503b918390cbc0af6f92d.tar.bz2 apimagic-cb660ee8afab6bdc301503b918390cbc0af6f92d.tar.xz |
build system: ccenv_set_cc_underscore(): avoid the __imp_foo false positive.
Diffstat (limited to 'sofort/ccenv')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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='_' |