diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-10-20 21:41:05 +0300 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-12-29 23:14:14 +0200 |
commit | 90498121063c9a9b5e15144bf8959044adac3885 (patch) | |
tree | d974fad0dbf340d931876927cbc7110634fe4e92 | |
parent | 587cbca826d7331633a30b5a6cce170e3dbe2612 (diff) |
build: Drop redundant check of PKG_CHECK_MODULES presence
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index a20dd86e4d..d27cc312d9 100644 --- a/configure.ac +++ b/configure.ac @@ -1535,10 +1535,10 @@ dnl libmultiprocess library check libmultiprocess_found=no if test "$with_libmultiprocess" = "yes" || test "$with_libmultiprocess" = "auto"; then - m4_ifdef([PKG_CHECK_MODULES], [PKG_CHECK_MODULES([LIBMULTIPROCESS], [libmultiprocess], [ + PKG_CHECK_MODULES([LIBMULTIPROCESS], [libmultiprocess], [ libmultiprocess_found=yes; libmultiprocess_prefix=`$PKG_CONFIG --variable=prefix libmultiprocess`; - ], [true])]) + ], [true]) elif test "$with_libmultiprocess" != "no"; then AC_MSG_ERROR([--with-libmultiprocess=$with_libmultiprocess value is not yes, auto, or no]) fi |