mk-sbuild: Fix comment syntax in proxy configuration (LP: #1163300).

This commit is contained in:
Colin Watson 2013-04-02 13:55:07 +01:00
parent eebe632337
commit 19628caf13
2 changed files with 7 additions and 1 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
ubuntu-dev-tools (0.148) UNRELEASED; urgency=low
* mk-sbuild: Fix comment syntax in proxy configuration (LP: #1163300).
-- Colin Watson <cjwatson@ubuntu.com> Tue, 02 Apr 2013 13:42:56 +0100
ubuntu-dev-tools (0.147) experimental; urgency=low
* Move devscripts.logger to ubuntutools.logger.

View File

@ -781,7 +781,7 @@ set -e
if [ -n "$proxy" ]; then
mkdir -p /etc/apt/apt.conf.d/
cat > /etc/apt/apt.conf.d/99mk-sbuild-proxy <<EOF
## proxy settings copied from mk-sbuild
// proxy settings copied from mk-sbuild
Acquire { HTTP { Proxy "$proxy"; }; };
EOF
fi