Changeset 10614 in hybrid for branches/releng-9.0/nanobsd/tools/package-build.sh
- Timestamp:
- Apr 29, 2012, 6:45:22 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/releng-9.0/nanobsd/tools/package-build.sh
r10613 r10614 65 65 MAKE="make ${PKG_MAKE_ARGS}" 66 66 BUILD_LIST='' 67 set ${PACKAGE_LIST}67 set `echo ${PACKAGE_LIST} | xargs -n1 -I% echo $PORTSDIR/%` 68 68 while [ "$1" ]; do 69 69 PACKAGE=$1; shift … … 74 74 echo "" 75 75 p_info Packaging $PACKAGE 76 cd $P ORTSDIR/$PACKAGE76 cd $PACKAGE || exit 1 77 77 78 78 # Check for build dependencies … … 121 121 ${MAKE} package-links 122 122 PKGNAME=`make extract-message | awk '{print $NF}'` 123 pkg_create -b $PKGNAME ${NANO_PACKAGE_DIR}/${PKGNAME}.tbz 123 pkg_create -b $PKGNAME ${NANO_PACKAGE_DIR}/${PKGNAME}.tbz || exit 1 124 124 125 125 p_info Checking dependencies
Note:
See TracChangeset
for help on using the changeset viewer.