- Timestamp:
- 09/26/17 16:36:24 (8 years ago)
- Branches:
- master, perl-5.22
- Children:
- a35989d
- Parents:
- 2758a4b (diff), 5fedc40 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
builder/runrooted
r2758a4b r07ead96 229 229 mv $WORKDIR/*.version $DIR || exit 1 230 230 231 # copy check if pkg file is different and update build number when needed231 #move packages from buildroot to workdir 232 232 for PKG in $WORKDIR/*.pkg; do 233 233 NAME=`basename $PKG|sed 's/.pkg$//g'` 234 234 if ! cmp $PKG $DIR/$NAME.pkg; then 235 BUILD=`cat $DIR/$NAME.build 2>/dev/null`236 if [ "$BUILD" == "" ]; then237 BUILD=1238 else239 (( BUILD=BUILD+1 ))240 fi241 echo "$PKG was rebuilded, build $BUILD"242 235 mv $PKG $DIR || exit 1 243 echo $BUILD > $DIR/$NAME.build || exit 1244 236 fi 245 237 done
Note: See TracChangeset
for help on using the changeset viewer.