diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2020-11-01 03:08:16 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-11-12 20:27:40 +0200 |
commit | d2aac3d80984b51919ecc39e50d5cec32b264580 (patch) | |
tree | 0600eb264cfbec50f4c4194baa2f0ba6cb3aa549 /test cases | |
parent | dffd66e0ff2d3c91003fc4c361382c473ed11cfa (diff) | |
download | meson-d2aac3d80984b51919ecc39e50d5cec32b264580.zip meson-d2aac3d80984b51919ecc39e50d5cec32b264580.tar.gz meson-d2aac3d80984b51919ecc39e50d5cec32b264580.tar.bz2 |
dependencies: Put pkgconfig options before operands
This fixes building with meson when the POSIX behavior of getopt is used, such as when GNU libc is used with POSIXLY_CORRECT=1 defined
Diffstat (limited to 'test cases')
-rwxr-xr-x | test cases/common/231 external project/libfoo/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/common/231 external project/libfoo/configure b/test cases/common/231 external project/libfoo/configure index a867b48..0e4aa72 100755 --- a/test cases/common/231 external project/libfoo/configure +++ b/test cases/common/231 external project/libfoo/configure @@ -27,7 +27,7 @@ case $i in esac done -DEP_ARGS=$(pkg-config somelib --cflags --libs) +DEP_ARGS=$(pkg-config --cflags --libs somelib) cat > Makefile << EOL all: libfoo.$LIBEXT |