diff options
Diffstat (limited to 'extra/libelf/build')
-rwxr-xr-x | extra/libelf/build | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/extra/libelf/build b/extra/libelf/build index 3e4b1fd7..ab7be6a0 100755 --- a/extra/libelf/build +++ b/extra/libelf/build @@ -8,8 +8,15 @@ clsed 's/as_fn_error.*argp/: "/g' configure clsed 's/as_fn_error.*fts/: "/g' configure clsed 's/as_fn_error.*obstack/: "/g' configure -# Don't compile two unrelated C files which require argp. -clsed 's/color.*printversion../#/g' lib/Makefile.in +# Don't compile unrelated C files which require argp. +# +# False positive, we are not trying to expand anything +# shellcheck disable=2016 +{ + clsed 's/color.*printversion../#/g' lib/Makefile.in + clsed 's/error.*printversion../#/g' lib/Makefile.in + clsed 's/color\.\$(OBJ/#/g' lib/Makefile.in +} ./configure \ --prefix=/usr \ |