diff options
author | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2013-11-29 12:35:48 +0000 |
---|---|---|
committer | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2013-11-29 12:35:48 +0000 |
commit | db24c1c957e1675a1adf3d2b7a0fb24ab643e614 (patch) | |
tree | 46e95e8a217d662b8d249d5c2d990a2b966bcc8d /distrib | |
parent | 6888a1eafc72dee4fc6677887f3085e7f2fa8c18 (diff) |
Disable SRCLIBDIR crunchgen feature on gcc 3 platforms, same as mvme88k does.
suggested and ok miod@
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/luna88k/ramdisk/Makefile | 7 | ||||
-rw-r--r-- | distrib/luna88k/ramdisk/Makefile.inc | 7 |
2 files changed, 7 insertions, 7 deletions
diff --git a/distrib/luna88k/ramdisk/Makefile b/distrib/luna88k/ramdisk/Makefile index f02a8bcaf3d..32849f6f6a8 100644 --- a/distrib/luna88k/ramdisk/Makefile +++ b/distrib/luna88k/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.16 2013/10/18 14:04:04 deraadt Exp $ +# $OpenBSD: Makefile,v 1.17 2013/11/29 12:35:47 aoyama Exp $ TOP= ${.CURDIR}/.. @@ -78,7 +78,10 @@ ${CBIN}.mk ${CBIN}.cache ${CBIN}.c: ${CBIN}.conf crunchgen -E -D ${.CURDIR}/../../.. -L ${DESTDIR}/usr/lib ${CBIN}.conf ${CBIN}: ${CBIN}.mk ${CBIN}.cache ${CBIN}.c - ${MAKE} -f ${CBIN}.mk SRCLIBDIR=${.CURDIR}/../../../lib all + ${MAKE} -f ${CBIN}.mk all + +#${CBIN}: ${CBIN}.mk ${CBIN}.cache ${CBIN}.c +# ${MAKE} -f ${CBIN}.mk SRCLIBDIR=${.CURDIR}/../../../lib all do_files: mtree -def ${MTREE} -p ${MOUNT_POINT}/ -u diff --git a/distrib/luna88k/ramdisk/Makefile.inc b/distrib/luna88k/ramdisk/Makefile.inc index 9111f43cff4..7b1e6062e8d 100644 --- a/distrib/luna88k/ramdisk/Makefile.inc +++ b/distrib/luna88k/ramdisk/Makefile.inc @@ -1,5 +1,5 @@ # -# $OpenBSD: Makefile.inc,v 1.6 2013/10/15 22:46:51 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.7 2013/11/29 12:35:47 aoyama Exp $ # # TOP is assumed to be defined by Makefile including this one. @@ -21,10 +21,7 @@ ${CBIN}.mk ${CBIN}.cache ${CBIN}.c: ${CBIN}.conf crunchgen -D ${BSDSRCDIR} -L ${DESTDIR}/usr/lib ${CBIN}.conf ${CBIN}: ${CBIN}.mk ${CBIN}.cache ${CBIN}.c - ${MAKE} -f ${CBIN}.mk SRCLIBDIR=${.CURDIR}/../../../lib all - -#${CBIN}.mk ${CBIN}.cache ${CBIN}.c: ${CRUNCHCONF} -# crunchgen -D ${BSDSRCDIR} -L ${DESTDIR}/usr/lib ${CRUNCHCONF} + ${MAKE} -f ${CBIN}.mk all #${CBIN}: ${CBIN}.mk ${CBIN}.cache ${CBIN}.c # ${MAKE} -f ${CBIN}.mk SRCLIBDIR=${.CURDIR}/../../../lib all |