summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <hun@n-dimensional.de>2020-02-18 18:53:53 +0100
committerHans Ulrich Niedermann <hun@n-dimensional.de>2020-02-18 22:49:20 +0100
commit24db3a46e139fc6cf297e2963e19ed55e3748043 (patch)
treeeafe1f5f4a984c87cbc26e990cace54e45ea84c4
parent3a6f4304066cd8c665e4576261fb7c509eaa2c8a (diff)
downloadlibgphoto2-24db3a46e139fc6cf297e2963e19ed55e3748043.tar.gz
configure.ac: explicitly m4_pattern_allow the _GPEOF marker
Explicitly m4_pattern_allow the _GPEOF marker so that any other m4_pattern_forbid() calls cannot disallow it.
-rw-r--r--configure.ac5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index e2839ca86..b25346a32 100644
--- a/configure.ac
+++ b/configure.ac
@@ -713,7 +713,8 @@ dnl Just enabling "foo" often does not make a camera made by
dnl manufacturer "Foo" work.
GP_CAMLIBS_CONDITIONAL_WARNING
-cat<<_GP_EOF
+m4_pattern_allow([_GPEOF])dnl
+cat<<_GPEOF
Please check whether the configuration I have detected matches what
you would like to have. E.g. make sure that USB support is there if
you intend to use USB cameras with ${PACKAGE_NAME}.
@@ -721,4 +722,4 @@ you intend to use USB cameras with ${PACKAGE_NAME}.
Please also check that PKG_CONFIG_PATH contains
${pkgconfigdir}
before compiling any libgphoto2 frontend.
-_GP_EOF
+_GPEOF