[Bug 259437] devel/aarch64-none-elf-gcc: attempt to remove non-existent hiearchy
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 25 Oct 2021 13:57:15 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=259437 Bug ID: 259437 Summary: devel/aarch64-none-elf-gcc: attempt to remove non-existent hiearchy Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: manu@freebsd.org Reporter: joerg@FreeBSD.org Assignee: manu@freebsd.org Flags: maintainer-feedback?(manu@freebsd.org) The port tries to remove /usr/lib/gcc/${GCC_TARGET}/${PORTVERSION}/include-fixed, rather than ${PREFIX}/lib/gcc/${GCC_TARGET}/${PORTVERSION}/include-fixed. This results in (useless) "fixed" include files remaining to be packaged. Fix: diff --git a/devel/aarch64-none-elf-gcc/Makefile b/devel/aarch64-none-elf-gcc/Makefile index e6d1e217aa33..0595520a0ca2 100644 --- a/devel/aarch64-none-elf-gcc/Makefile +++ b/devel/aarch64-none-elf-gcc/Makefile @@ -89,6 +89,6 @@ post-install: .endfor @${RM} ${STAGEDIR}${PREFIX}/share/info/* @${RM} ${STAGEDIR}${PREFIX}/man/man7/* - ${RM} -r ${STAGEDIR}/usr/lib/gcc/${GCC_TARGET}/${PORTVERSION}/include-fixed + ${RM} -r ${STAGEDIR}${PREFIX}/lib/gcc/${GCC_TARGET}/${PORTVERSION}/include-fixed .include <bsd.port.post.mk> -- You are receiving this mail because: You are the assignee for the bug.