summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <hun@n-dimensional.de>2020-02-14 11:46:20 +0100
committerHans Ulrich Niedermann <hun@n-dimensional.de>2020-02-14 11:51:43 +0100
commit2a7b01728174f12acfe3417155deb2536109dba8 (patch)
treedff04901a3608a35324b803c4468108b6ff7bb87
parent19c923e5d2767343d68010f367494409b6f02b4b (diff)
downloadlibgphoto2-2a7b01728174f12acfe3417155deb2536109dba8.tar.gz
Avoid "echo" in configure.ac in some places
This should avoid some possible incompatibities in the case of the multi line string argument to "echo", and cleans up the code by replacing a number of "echo" commands with a single AC_MSG_WARN.
-rw-r--r--configure.ac28
1 files changed, 15 insertions, 13 deletions
diff --git a/configure.ac b/configure.ac
index eb1ebd81a..7b7bd7f24 100644
--- a/configure.ac
+++ b/configure.ac
@@ -670,14 +670,15 @@ dnl with ac_file set to the filename.
])
AC_OUTPUT
-if test "x$CDPATH" != "x"
-then
- echo
- echo "***********************************************************"
- echo "* You have CDPATH set. You may have to run \"unset CDPATH\" *"
- echo "* before running \"make dist\" or \"make rpm\". *"
- echo "***********************************************************"
-fi
+AS_IF([test "x$CDPATH" != "x"], [dnl
+ AC_MSG_WARN([
+
+ #=========================================================#
+ # You have CDPATH set. You may have to run "unset CDPATH" #
+ # before running "make dist" or "make rpm". #
+ #=========================================================#
+])
+])dnl
GP_CONFIG_OUTPUT
@@ -690,11 +691,12 @@ else
GP_CAMLIBS_WARNING
fi
-echo "Please check whether the configuration I 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.
+cat<<_GP_EOF
+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}.
Please also check that PKG_CONFIG_PATH contains
- ${pkgconfigdir}
+ ${pkgconfigdir}
before compiling any libgphoto2 frontend.
-"
+_GP_EOF