diff options
author | dancer <dancer> | 2001-09-01 10:34:37 +0000 |
---|---|---|
committer | dancer <dancer> | 2001-09-01 10:34:37 +0000 |
commit | 22ac9953a34000c2c853cbe7f40cc2417d917135 (patch) | |
tree | 1bfcb5e176d81908b6f98587b7caa55d082fb5e9 | |
parent | 2129f7acbc3397ac7963b316a219518dfcdf2ef8 (diff) | |
download | pbuilder-22ac9953a34000c2c853cbe7f40cc2417d917135.tar pbuilder-22ac9953a34000c2c853cbe7f40cc2417d917135.tar.gz |
fixed typo in apt-line generation
-rw-r--r-- | debian/changelog | 3 | ||||
-rw-r--r-- | pbuilder-modules | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index fe70b49..6621702 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,8 +13,9 @@ pbuilder (0.3) unstable; urgency=low * added login target to pbuilder, to allow for easy debugging. * TODO: Make pbuilder build to abort on error, and give back an errorcode. * TODO: Use both non-us and main archives. + * fixed typo in apt-line generation - -- Junichi Uekawa <dancer@debian.org> Sat, 1 Sep 2001 18:40:56 +0900 + -- Junichi Uekawa <dancer@debian.org> Sat, 1 Sep 2001 19:33:56 +0900 pbuilder (0.2) unstable; urgency=low diff --git a/pbuilder-modules b/pbuilder-modules index be2f4b4..c1da6a1 100644 --- a/pbuilder-modules +++ b/pbuilder-modules @@ -68,7 +68,7 @@ function installaptlines (){ echo Installing apt-lines cat > "$BUILDPLACE"/etc/apt/sources.list << EOF deb $MIRRORSITE $DISTRIBUTION main contrib non-free -deb-src $MIRRORSITE debian $DISTRIBUTION main contrib non-free +deb-src $MIRRORSITE $DISTRIBUTION main contrib non-free EOF } |