diff options
author | mat <mat@FreeBSD.org> | 2018-03-29 01:14:27 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2018-03-29 01:14:27 +0800 |
commit | 1ad7188e4da5075b09fc69bf3b8620b108e4c9d5 (patch) | |
tree | 485b3e1a9f0bee7f3c3259ce04de37be1baff1f6 /graphics | |
parent | 509e035054ed99b2afde4c3dbef720cd15252800 (diff) | |
download | freebsd-ports-gnome-1ad7188e4da5075b09fc69bf3b8620b108e4c9d5.tar.gz freebsd-ports-gnome-1ad7188e4da5075b09fc69bf3b8620b108e4c9d5.tar.zst freebsd-ports-gnome-1ad7188e4da5075b09fc69bf3b8620b108e4c9d5.zip |
Mark BROKEN with Perl 5.26.
The error is:
cc -shared -L/usr/local/lib/perl5/5.26/mach/CORE -lperl
-L/usr/local/lib -fstack-protector-strong Geometry/Geometry.o
Global/Global.o Local/Local.o Misc/Misc.o Morphology/Morphology.o
Point/Point.o IPA.o Geometry/Geometry2.o Global/fft.o Global/Global2.o
Global/gsclose.o Global/hough.o Local/Local2.o Misc/Misc2.o
Morphology/Morphology2.o Point/Point2.o -o blib/arch/auto/IPA/IPA.so
cc: error: no such file or directory: 'Geometry/Geometry.o'
cc: error: no such file or directory: 'Global/Global.o'
cc: error: no such file or directory: 'Local/Local.o'
cc: error: no such file or directory: 'Misc/Misc.o'
[...]
For some reason, the object files are not created where they should and,
obviously, cc cannot find them. I compared the Makefile from Perl 5.24
which works and Perl 5.26 which does not, I cannot see any obviously
wrong bit.
PR: 226817
Sponsored by: Absolight
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/IPA/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/IPA/Makefile b/graphics/IPA/Makefile index 507fe3af6baa..2a7ec76c6265 100644 --- a/graphics/IPA/Makefile +++ b/graphics/IPA/Makefile @@ -21,4 +21,10 @@ MAKE_JOBS_UNSAFE= yes post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/IPA/IPA.so -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} >= 502600 +BROKEN= Does not build +.endif + +.include <bsd.port.post.mk> |