diff options
author | midipix <writeonce@midipix.org> | 2019-01-01 04:38:41 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-01 04:42:20 -0500 |
commit | f3b1b3a05b5d564f5f430fdda134ee5cc3001074 (patch) | |
tree | d0ae983deba69e2c3880c8a5116b49d7efd55545 /sofort/ccenv | |
parent | a53d6ce495199947a8ca41f649f2f8b8664e19bf (diff) | |
download | ntux-f3b1b3a05b5d564f5f430fdda134ee5cc3001074.tar.bz2 ntux-f3b1b3a05b5d564f5f430fdda134ee5cc3001074.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='_' |