Fix 2 remaining places items are depending on execute permissions coming out
from a cvs checkout on scripts.
This commit is contained in:
parent
657c8bd72c
commit
d9556f9ecc
6
build.sh
6
build.sh
|
@ -1,5 +1,5 @@
|
|||
#! /usr/bin/env sh
|
||||
# $NetBSD: build.sh,v 1.112 2003/08/10 16:20:37 sommerfeld Exp $
|
||||
# $NetBSD: build.sh,v 1.113 2003/08/11 19:26:04 jmc Exp $
|
||||
#
|
||||
# Copyright (c) 2001-2003 The NetBSD Foundation, Inc.
|
||||
# All rights reserved.
|
||||
|
@ -646,7 +646,7 @@ rebuildmake()
|
|||
${runcmd} cd "${tmpdir}"
|
||||
${runcmd} env CC="${HOST_CC-cc}" CPPFLAGS="${HOST_CPPFLAGS}" \
|
||||
CFLAGS="${HOST_CFLAGS--O}" LDFLAGS="${HOST_LDFLAGS}" \
|
||||
"${TOP}/tools/make/configure" ||
|
||||
sh "${TOP}/tools/make/configure" ||
|
||||
bomb "Configure of ${toolprefix}make failed"
|
||||
${runcmd} sh buildmake.sh ||
|
||||
bomb "Build of ${toolprefix}make failed"
|
||||
|
@ -802,7 +802,7 @@ createmakewrapper()
|
|||
eval cat <<EOF ${makewrapout}
|
||||
#! /bin/sh
|
||||
# Set proper variables to allow easy "make" building of a NetBSD subtree.
|
||||
# Generated from: \$NetBSD: build.sh,v 1.112 2003/08/10 16:20:37 sommerfeld Exp $
|
||||
# Generated from: \$NetBSD: build.sh,v 1.113 2003/08/11 19:26:04 jmc Exp $
|
||||
#
|
||||
|
||||
EOF
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.7 2003/06/06 17:30:25 christos Exp $
|
||||
# $NetBSD: Makefile,v 1.8 2003/08/11 19:26:06 jmc Exp $
|
||||
|
||||
TIMESTAMP= ${TOOLDIR}/bin/${_TOOL_PREFIX}host-mkdep
|
||||
|
||||
|
@ -9,7 +9,7 @@ CLEANFILES+= config.cache config.log config.status host-mkdep
|
|||
realall: host-mkdep
|
||||
host-mkdep: configure host-mkdep.in
|
||||
-rm -f $@
|
||||
CC=${HOST_CC:Q} ${.CURDIR}/configure --cache-file=config.cache
|
||||
CC=${HOST_CC:Q} sh ${.CURDIR}/configure --cache-file=config.cache
|
||||
chmod +x $@
|
||||
|
||||
# This is the only program that comes before binstall.
|
||||
|
|
Loading…
Reference in New Issue