Skip to content

Commit 9049812

Browse files
committed
build: Drop redundant check of PKG_CHECK_MODULES presence
1 parent 587cbca commit 9049812

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1535,10 +1535,10 @@ dnl libmultiprocess library check
15351535

15361536
libmultiprocess_found=no
15371537
if test "$with_libmultiprocess" = "yes" || test "$with_libmultiprocess" = "auto"; then
1538-
m4_ifdef([PKG_CHECK_MODULES], [PKG_CHECK_MODULES([LIBMULTIPROCESS], [libmultiprocess], [
1538+
PKG_CHECK_MODULES([LIBMULTIPROCESS], [libmultiprocess], [
15391539
libmultiprocess_found=yes;
15401540
libmultiprocess_prefix=`$PKG_CONFIG --variable=prefix libmultiprocess`;
1541-
], [true])])
1541+
], [true])
15421542
elif test "$with_libmultiprocess" != "no"; then
15431543
AC_MSG_ERROR([--with-libmultiprocess=$with_libmultiprocess value is not yes, auto, or no])
15441544
fi

0 commit comments

Comments
 (0)