diff options
author | nytpu <alex@nytpu.com> | 2021-06-02 12:46:18 -0600 |
---|---|---|
committer | nytpu <alex@nytpu.com> | 2021-06-02 12:46:36 -0600 |
commit | ce049497046a56ef4c247cfbff7aea98314aebd3 (patch) | |
tree | 8cae786c3e1dfc932b85e87d342f41574d977446 /configure | |
parent | move error() to common.h (diff) | |
download | ed-ce049497046a56ef4c247cfbff7aea98314aebd3.tar.bz2 ed-ce049497046a56ef4c247cfbff7aea98314aebd3.zip |
fix configure script
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -20,8 +20,8 @@ set_macro() { add_lib() { ${pkgconfig} --print-errors "$@" - cflags $(${pkgconfig} --cflags "$@") - for lib in "$@"; do ldadd "$lib" $(${pkgconfig} --libs "$lib"); done + add_cflags $(${pkgconfig} --cflags "$@") + for lib in "$@"; do add_ld $(${pkgconfig} --libs "$lib"); done } # save stdout and redirec to config.mk |