summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorGleb Popov <6yearold@gmail.com>2020-10-19 13:35:33 +0400
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2020-10-20 10:21:41 +0200
commit90098ed2d426e3812940efb84f8495240e6a85b0 (patch)
tree3accab28cc4ec3d300cf5d5f22d43d0515df92fc /configure.ac
parentf886d9cacba197cb92a75317fe7d24280dff6436 (diff)
Do not check for GNU patch utility on FreeBSD.
While FreeBSD patch is indeed not a GNU one, it is sufficient to build LO. Change-Id: I55783f5bc7b4e2886e31936a317f52916d9a1e5f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104519 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index f26ab0b592d2..96cf1467dee2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11002,8 +11002,8 @@ if test -z "$PATCH"; then
AC_MSG_ERROR(["patch" not found in \$PATH, install it])
fi
-dnl On Solaris, FreeBSD or macOS, check if --with-gnu-patch was used
-if test "$_os" = "SunOS" -o "$_os" = "FreeBSD" -o "$_os" = "Darwin"; then
+dnl On Solaris or macOS, check if --with-gnu-patch was used
+if test "$_os" = "SunOS" -o "$_os" = "Darwin"; then
if test -z "$with_gnu_patch"; then
GNUPATCH=$PATCH
else