diff options
| author | Michael Biebl <biebl@debian.org> | 2025-11-21 18:21:00 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2025-11-21 18:21:00 +0100 |
| commit | f3e2a69b783cafa8394f1d5d6e5846a3397f8cb7 (patch) | |
| tree | f7f779a5062a647cb6a1c13b7d5e43d6ad49b3ba | |
| parent | 6d7d1b742b1f7e12faaa64785e518f2efd6dc686 (diff) | |
Fix dhcpcd build option
The intended build option "false" did not actually disable it as expected, so use "no" instead. Thanks: John Scott Closes: #1121101
| -rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index a01f8dc6..cf86f593 100755 --- a/debian/rules +++ b/debian/rules @@ -20,7 +20,7 @@ override_dh_auto_configure: -Dpppd=/usr/sbin/pppd \ -Dresolvconf=/usr/sbin/resolvconf \ -Dmodprobe=/usr/sbin/modprobe \ - -Ddhcpcd=false \ + -Ddhcpcd=no \ -Diptables=/usr/sbin/iptables \ -Dip6tables=/usr/sbin/ip6tables \ -Dnft=/usr/sbin/nft \ |