diff options
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/changelog | 1 | ||||
| -rwxr-xr-x | debian/rules | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index f872776b..2504bebf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -30,6 +30,7 @@ network-manager (0.8.0.999-1) UNRELEASED; urgency=low * debian/rules - Set --with-pppd-plugin-dir configure option to /usr/lib/pppd/2.4.4. The upstream default is 2.4.5 now but Debian still only has ppp 2.4.4. + - Set --with-dhclient configure option to /sbin/dhclient. -- Michael Biebl <biebl@debian.org> Thu, 08 Jul 2010 16:39:38 +0200 diff --git a/debian/rules b/debian/rules index 2944e43a..89347de2 100755 --- a/debian/rules +++ b/debian/rules @@ -14,10 +14,9 @@ DEB_INSTALL_DOCS_ALL := README AUTHORS DEB_CONFIGURE_LIBEXECDIR := "\$$(prefix)/lib/NetworkManager" DEB_CONFIGURE_EXTRA_FLAGS := \ - --with-dbus-sys=/etc/dbus-1/system.d \ --with-distro=debian \ --with-resolvconf=/sbin/resolvconf \ - --with-dhcp-client=/sbin/dhclient \ + --with-dhclient=/sbin/dhclient \ --with-iptables=/sbin/iptables \ --with-crypto=gnutls \ --with-pppd-plugin-dir=/usr/lib/pppd/2.4.4 \ |