diff options
author | Cy Schubert <cy@FreeBSD.org> | 2019-03-30 19:58:22 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2019-03-30 19:58:22 +0000 |
commit | d831a9a9f12d28d1386f1f6c2b1c1c345fdcd887 (patch) | |
tree | da07153a060ac0c9e3e84f67558a445f392cd48c | |
parent | 217e12b85b4a53a6e95bddef50c3db1bc5ee402e (diff) |
Fix:
===> Building for syslog-ng-3.20.1
gmake[2]: Entering directory '/export/wrkdir/amd64/usr/ports/sysutils/
syslog-ng/work/syslog-ng-3.20.1'
Makefile:22291: *** "Python interpreter is required to generate grammar
files, but it was not detected during configure". Stop.
gmake[2]: Leaving directory '/export/wrkdir/amd64/usr/ports/sysutils/
syslog-ng/work/syslog-ng-3.20.1'
*** Error code 1
Stop.
make[1]: stopped in /usr/ports/sysutils/syslog-ng
*** Error code 1
Stop.
make: stopped in /usr/ports/sysutils/syslog-ng
Broken by PR: 236845
Notes
Notes:
svn path=/head/; revision=497339
-rw-r--r-- | sysutils/syslog-ng318/Makefile | 2 | ||||
-rw-r--r-- | sysutils/syslog-ng319/Makefile | 2 | ||||
-rw-r--r-- | sysutils/syslog-ng320/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sysutils/syslog-ng318/Makefile b/sysutils/syslog-ng318/Makefile index 3c99e5313cb8..46078f0cc2bf 100644 --- a/sysutils/syslog-ng318/Makefile +++ b/sysutils/syslog-ng318/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libpcre.so:devel/pcre \ libuuid.so:misc/e2fsprogs-libuuid USES= autoreconf:build gmake libtool pathfix pkgconfig ssl \ - gettext-runtime shebangfix + gettext-runtime python:3.5+,build shebangfix CONFLICTS?= syslog-ng-[0-9]* syslog-ng[0-9]-[0-9]* \ syslog-ng[0-9][0-9]-[0-9]* \ diff --git a/sysutils/syslog-ng319/Makefile b/sysutils/syslog-ng319/Makefile index 0300c2ea7f2f..250d62dc435d 100644 --- a/sysutils/syslog-ng319/Makefile +++ b/sysutils/syslog-ng319/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libpcre.so:devel/pcre \ libuuid.so:misc/e2fsprogs-libuuid USES= autoreconf:build gmake libtool pathfix pkgconfig ssl \ - gettext-runtime shebangfix + gettext-runtime python:3.5+,build shebangfix CONFLICTS?= syslog-ng-[0-9]* syslog-ng[0-9]-[0-9]* \ syslog-ng[0-9][0-9]-[0-9]* \ diff --git a/sysutils/syslog-ng320/Makefile b/sysutils/syslog-ng320/Makefile index 5b12bb83b9de..0ac5c5b336c8 100644 --- a/sysutils/syslog-ng320/Makefile +++ b/sysutils/syslog-ng320/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libpcre.so:devel/pcre \ libuuid.so:misc/e2fsprogs-libuuid USES= autoreconf:build gmake libtool pathfix pkgconfig ssl \ - gettext-runtime shebangfix + gettext-runtime python:3.5+,build shebangfix CONFLICTS?= syslog-ng-[0-9]* syslog-ng[0-9]-[0-9]* \ syslog-ng[0-9][0-9]-[0-9]* \ |