summaryrefslogtreecommitdiff
path: root/man/Makefile.am
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2012-04-14 07:11:08 +0200
committerGuillem Jover <guillem@debian.org>2012-04-14 09:16:03 +0200
commit1fcb0305c9378eb461db5a5a1b930270c6773824 (patch)
tree39ed9fde347c657e0c415234f62143f3bd803010 /man/Makefile.am
parentc627c85d54a292aea3dc083d8871783cb0825806 (diff)
downloaddpkg-1fcb0305c9378eb461db5a5a1b930270c6773824.tar.gz
build: Switch from --without- to --disable- for programs to be built
The standard way to select if a specific component of the build is to be enabled or disabled is through --enable-foo and --disable-foo options, --with-foo and --without-foo are used for selecting external modules to be used.
Diffstat (limited to 'man/Makefile.am')
-rw-r--r--man/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index 0c4cff291..16d02406d 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -40,18 +40,18 @@ dist_man_MANS = \
dpkg.1 \
dpkg.cfg.5
-if WITH_DSELECT
+if BUILD_DSELECT
dist_man_MANS += \
dselect.1 \
dselect.cfg.5
endif
-if WITH_START_STOP_DAEMON
+if BUILD_START_STOP_DAEMON
dist_man_MANS += \
start-stop-daemon.8
endif
-if WITH_UPDATE_ALTERNATIVES
+if BUILD_UPDATE_ALTERNATIVES
dist_man_MANS += \
update-alternatives.8
endif