pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/shells/standalone-tcsh



Module Name:    pkgsrc
Committed By:   mrg
Date:           Sat Feb  5 05:39:55 UTC 2022

Modified Files:
        pkgsrc/shells/standalone-tcsh: Makefile

Log Message:
disable PIE on arm64 - ./configure fails without this.

there is some PIE vs static issue, but i did not learn anything
useful about what is causing it.


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 pkgsrc/shells/standalone-tcsh/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/shells/standalone-tcsh/Makefile
diff -u pkgsrc/shells/standalone-tcsh/Makefile:1.38 pkgsrc/shells/standalone-tcsh/Makefile:1.39
--- pkgsrc/shells/standalone-tcsh/Makefile:1.38 Thu Dec  9 19:55:39 2021
+++ pkgsrc/shells/standalone-tcsh/Makefile      Sat Feb  5 05:39:55 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.38 2021/12/09 19:55:39 kim Exp $
+# $NetBSD: Makefile,v 1.39 2022/02/05 05:39:55 mrg Exp $
 #
 
 # FIXME: This is because of PREFIX=/ below.
@@ -16,6 +16,11 @@ DESCR_SRC=           ../../shells/tcsh/DESCR DESC
 # anyone wants.
 ONLY_FOR_PLATFORM+=    NetBSD-*-* OpenBSD-*-* SunOS-*-*
 
+.if "${OPSYS}" == "NetBSD" && \
+    (${MACHINE_ARCH} == "aarch64" || ${MACHINE_ARCH} == "aarch64eb")
+MKPIE_SUPPORTED= no
+.endif
+
 .include "../../mk/bsd.prefs.mk"
 
 .if ${OS_VARIANT} == "OmniOS"



Home | Main Index | Thread Index | Old Index