aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog3
-rw-r--r--debian/control2
-rwxr-xr-xpbuilder-checkparams2
-rwxr-xr-xpbuilder-createbuildenv2
4 files changed, 5 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog
index 015e393..d389896 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,8 +3,9 @@ pbuilder (0.2) unstable; urgency=low
* Initial upload to Debian archive. (closes: #110388)
* Add a versioned depends on debootstrap, because that version is the only
version I tested on ... 0.1.15.2
+ * --mirror option is fixed. it works now.
- -- Junichi Uekawa <dancer@debian.org> Tue, 28 Aug 2001 19:07:29 +0900
+ -- Junichi Uekawa <dancer@debian.org> Tue, 28 Aug 2001 19:16:41 +0900
pbuilder (0.1) unstable; urgency=low
diff --git a/debian/control b/debian/control
index 861be91..0383b0a 100644
--- a/debian/control
+++ b/debian/control
@@ -7,7 +7,7 @@ Standards-Version: 3.5.6
Package: pbuilder
Architecture: all
-Depends: debootstrap (>= 0.1.15.2), tar, shellutils, debianutils, ${shlibs:Depends}
+Depends: debootstrap (>= 0.1.15.2), ${shlibs:Depends}
Description: personal package builder for Debian packages
Constructs a chroot system, and builds a package inside the
chroot.
diff --git a/pbuilder-checkparams b/pbuilder-checkparams
index b64126b..6f1ac00 100755
--- a/pbuilder-checkparams
+++ b/pbuilder-checkparams
@@ -18,7 +18,7 @@ while [ -n "$1" ]; do
shift; shift;
;;
--mirror)
- MIRROR="$2";
+ MIRRORSITE="$2";
shift; shift;
;;
--http-proxy)
diff --git a/pbuilder-createbuildenv b/pbuilder-createbuildenv
index 104ee4d..13866e6 100755
--- a/pbuilder-createbuildenv
+++ b/pbuilder-createbuildenv
@@ -20,7 +20,7 @@ if [ ! -d "$BUILDPLACE" ]; then
fi
mountproc
echo " -> running debootstrap"
-( cd "$BUILDPLACE" && debootstrap "$DISTRIBUTION" . )
+( cd "$BUILDPLACE" && debootstrap "$DISTRIBUTION" . "$MIRRORSITE")
echo " -> debootstrap finished"
mkdir -p "$BUILDPLACE/tmp/buildd"
echo " -> copying local configuration"