pkgsrc-Changes archive

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

CVS commit: pkgsrc/cross/objconv



Module Name:    pkgsrc
Committed By:   sevan
Date:           Fri Mar  3 04:54:10 UTC 2017

Modified Files:
        pkgsrc/cross/objconv: Makefile

Log Message:
Mark as broken on big endian systems because they're not supported.
On Darwin/PowerPC, build reports:
"This machine has big-endian memory organization. Objconv program will not work"


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/cross/objconv/Makefile

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

Modified files:

Index: pkgsrc/cross/objconv/Makefile
diff -u pkgsrc/cross/objconv/Makefile:1.2 pkgsrc/cross/objconv/Makefile:1.3
--- pkgsrc/cross/objconv/Makefile:1.2   Sun May  8 07:28:14 2016
+++ pkgsrc/cross/objconv/Makefile       Fri Mar  3 04:54:10 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2016/05/08 07:28:14 ryoon Exp $
+# $NetBSD: Makefile,v 1.3 2017/03/03 04:54:10 sevan Exp $
 
 DISTNAME=      objconv
 PKGNAME=       ${DISTNAME}-2.39
@@ -20,6 +20,12 @@ USE_LANGUAGES=       c++
 
 INSTALLATION_DIRS+=    bin
 
+.include "../../mk/endian.mk"
+
+.if ${MACHINE_ENDIAN} == "big"
+BROKEN=        "Does not support big endian systems"
+.endif
+
 post-extract:
        cd ${WRKSRC} && unzip source.zip
 



Home | Main Index | Thread Index | Old Index