[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[automake-commit] branch master updated: configure: make perl path with
From: |
Karl Berry |
Subject: |
[automake-commit] branch master updated: configure: make perl path with whitespace a warning, not error. |
Date: |
Sat, 23 Nov 2024 20:57:50 -0500 |
This is an automated email from the git hooks/post-receive script.
karl pushed a commit to branch master
in repository automake.
View the commit online:
https://git.savannah.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=5beb339d15db32dd4df3ddc711adb3ece2851e42
The following commit(s) were added to refs/heads/master by this push:
new 5beb339d1 configure: make perl path with whitespace a warning, not
error.
5beb339d1 is described below
commit 5beb339d15db32dd4df3ddc711adb3ece2851e42
Author: Karl Berry <karl@freefriends.org>
AuthorDate: Sat Nov 23 17:57:41 2024 -0800
configure: make perl path with whitespace a warning, not error.
For https://bugs.gnu.org/74453.
See also https://bugs.gnu.org/62896.
* configure.ac (PERL): use AC_MSG_WARN.
---
configure.ac | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/configure.ac b/configure.ac
index e4c7a126c..fb2b37076 100644
--- a/configure.ac
+++ b/configure.ac
@@ -73,9 +73,11 @@ case $PERL in
AC_MSG_ERROR([perl not found])
;;
*' '* | *' '*)
- AC_MSG_ERROR([The path to your Perl contains spaces or tabs.
-This would cause build failures later or unusable programs.
-Please use a path without spaces and try again.])
+ AC_MSG_WARN([The path to your Perl contains spaces or tabs.
+This will likely cause build failures later or unusable programs.
+Unless you're specifying a full string for a #! line,
+as in "/usr/bin/env perl",
+please use a path without spaces and try again.])
;;
esac
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [automake-commit] branch master updated: configure: make perl path with whitespace a warning, not error.,
Karl Berry <=