Changeset 4933 for current/host/trunk/emdebian-tools/trunk/pbuilder
- Timestamp:
- 09/10/08 23:12:05 (4 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
current/host/trunk/emdebian-tools/trunk/pbuilder/empdebuild
r4931 r4933 59 59 --save-after-login: Allow changes made within the chroot login to persist. 60 60 --login-after-fail: In case of error, try to log in to the new chroot. 61 -- OPTIONS dpkg-buildpackage options 62 (except: -uc -us [default] -a [ignored]) 61 63 62 64 Although based on pbuilder, empdebuild cannot support the full range of … … 72 74 can use 'empdebuild --autobuild PACKAGE' to ensure that the patches are 73 75 usable for the autobuilder. 76 77 Options to dpkg-buildpackage can be specified after the -- option. 78 Note that '-uc' and '-us' are set by default and '-a' will be ignored 79 (because arch is controlled separately). Options are passed down to 80 emdebuild unchanged. 74 81 75 82 EOF … … 246 253 exit 1; 247 254 fi 248 if echo "$COLOUR ARCH=$ARCH emsource -q -a $ARCH -b --build-dep $PACKAGE " | chroot $BUILDPLACE /bin/sh; then255 if echo "$COLOUR ARCH=$ARCH emsource -q -a $ARCH -b --build-dep $PACKAGE $EM_DPKG_OPTS" | chroot $BUILDPLACE /bin/sh; then 249 256 : 250 257 else … … 414 421 echo " -> copying ../$OLDSRC" 415 422 cp -r "../$OLDSRC" "$BUILDPLACE/trunk/$TRUNK" 416 echo "Running emdebuild -a $ARCH :"423 echo "Running emdebuild -a $ARCH $EM_DPKG_OPTS " 417 424 COLOUR= 418 425 if [ $ANSI_COLORS_DISABLED ]; then 419 426 COLOUR=ANSI_COLORS_DISABLED=1 420 427 fi 421 if echo "cd /trunk/$SVN; $COLOUR ARCH=$ARCH emdebuild -a $ARCH " | chroot $BUILDPLACE /bin/sh; then428 if echo "cd /trunk/$SVN; $COLOUR ARCH=$ARCH emdebuild -a $ARCH $EM_DPKG_OPTS" | chroot $BUILDPLACE /bin/sh; then 422 429 : 423 430 else … … 595 602 exit; 596 603 ;; 604 --) 605 while [ -n "$1" ] 606 do 607 EM_DPKG_OPTS+="$1 " 608 shift 609 done 610 break 611 ;; 597 612 *) 598 613 echo "Unrecognised option: $1" … … 603 618 esac 604 619 done 605
