diff options
author | Miguel Figueiredo <elmig@debianpt.org> | 2011-05-09 22:19:32 +0100 |
---|---|---|
committer | Miguel Figueiredo <elmig@debianpt.org> | 2011-05-09 22:19:32 +0100 |
commit | 9cc47c88a2ea16f75a05709f213bf14c48603a19 (patch) | |
tree | 7ebee4f6966e33980e5233c5363f740af2dcc3e2 | |
parent | ea13ca99676676974bfa7350d214bf2a11744e5f (diff) | |
download | debootstrap-9cc47c88a2ea16f75a05709f213bf14c48603a19.tar.gz |
Use the build-essential package instead of Build-Essential: yes.
Thanks to Mark Hymers. Closes: #619700
Ack by otavio
-rw-r--r-- | debian/changelog | 4 | ||||
-rw-r--r-- | scripts/sid | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index c362614..1ed60a5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,9 @@ debootstrap (1.0.30) unstable; urgency=low + [ Mark Hymers ] + * Don't use the Build-Essential: yes field in Debian, use the + build-essential package. Closes: #619700. + [ Joey Hess ] * Recommend debian-archive-keyring, and if it is installed, default to checking gpg signatures of the Release file against it diff --git a/scripts/sid b/scripts/sid index 5ab6af3..7673764 100644 --- a/scripts/sid +++ b/scripts/sid @@ -23,7 +23,7 @@ work_out_debs () { # ^^ should be getting debconf here somehow maybe base="$(get_debs Priority: important)" elif doing_variant buildd || doing_variant scratchbox; then - base="apt $(get_debs Build-Essential: yes)" + base="apt build-essential" elif doing_variant minbase; then base="apt" fi |