1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

ARCH may be set in the environment for cross building, so only

set it conditionally.

Submitted by:	kris
This commit is contained in:
Erwin Lansing 2007-06-12 15:14:29 +00:00
parent 199d09adcc
commit afade85a8a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=193332

View File

@ -33,8 +33,10 @@ export SRCDIR5=${BASEDIR}/src.5
export SRCDIR6=${BASEDIR}/src.6
export SRCDIR7=${BASEDIR}/src.7
# Target architecture
export ARCH=i386
# Target architecture if not set in the environment
if [ "${ARCH}" = "" ]; then
export ARCH=i386
fi
# SSH key to use for copying INDEXes to www host (if non-default)
export SSHKEY="-i /home/kris/.ssh/id_dsa-index"