Differences From Artifact [73b3561dba]:
- Executable file
kitsh/build.sh
— part of check-in
[e95acf08f0]
at
2010-09-26 04:40:48
on branch trunk
— Added zlib package
Added support for specifying --with-zlib to kitsh if zlib built fine (user: rkeene, size: 2330) [annotate] [blame] [check-ins using]
To Artifact [2d66362eb1]:
- Executable file kitsh/build.sh — part of check-in [d2e00f0f73] at 2010-09-26 04:41:24 on branch trunk — Added support for specifying a STRIP environment variable (user: rkeene, size: 2342) [annotate] [blame] [check-ins using]
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
echo "./configure --with-tcl=\"${TCLCONFIGDIR}\" --with-zlib=\"${ZLIBDIR}\" ${CONFIGUREEXTRA}"
./configure --with-tcl="${TCLCONFIGDIR}" --with-zlib="${ZLIBDIR}" ${CONFIGUREEXTRA}
fi
${MAKE:-make} || exit 1
# Strip the kit of all symbols, if possible
strip kit >/dev/null 2>/dev/null
# Create VFS directory
mkdir "starpack.vfs"
mkdir "starpack.vfs/lib"
## Copy in all built directories
cp -r "${OTHERPKGSDIR}"/*/out/* 'starpack.vfs/'
|
| |
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
echo "./configure --with-tcl=\"${TCLCONFIGDIR}\" --with-zlib=\"${ZLIBDIR}\" ${CONFIGUREEXTRA}"
./configure --with-tcl="${TCLCONFIGDIR}" --with-zlib="${ZLIBDIR}" ${CONFIGUREEXTRA}
fi
${MAKE:-make} || exit 1
# Strip the kit of all symbols, if possible
"${STRIP:-strip}" kit >/dev/null 2>/dev/null
# Create VFS directory
mkdir "starpack.vfs"
mkdir "starpack.vfs/lib"
## Copy in all built directories
cp -r "${OTHERPKGSDIR}"/*/out/* 'starpack.vfs/'
|