From: Colin Walters Date: Tue, 7 Feb 2012 18:53:58 +0000 (-0500) Subject: build: Add --disable-documentation option X-Git-Tag: 024~51 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2692a422315c6eb6df251c652f4295d749984452;p=thirdparty%2Fdracut.git build: Add --disable-documentation option Some operating system builders may not want to build documention, for example during a bootstrapping process. --- diff --git a/Makefile b/Makefile index d04d3dd29..ac1c178ee 100644 --- a/Makefile +++ b/Makefile @@ -61,6 +61,10 @@ indent: doc: $(manpages) dracut.html +ifeq ($(enable_documentation),yes) +all: doc +endif + %: %.xml xsltproc -o $@ -nonet http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< @@ -76,7 +80,7 @@ dracut.html: dracut.asc $(manpages) http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl dracut.xml rm dracut.xml -install: doc dracut-version.sh +install: dracut-version.sh mkdir -p $(DESTDIR)$(pkglibdir) mkdir -p $(DESTDIR)$(bindir) mkdir -p $(DESTDIR)$(sysconfdir) @@ -94,11 +98,13 @@ install: doc dracut-version.sh install -m 0755 dracut-logger.sh $(DESTDIR)$(pkglibdir)/dracut-logger.sh install -m 0755 dracut-initramfs-restore.sh $(DESTDIR)$(pkglibdir)/dracut-initramfs-restore cp -arx modules.d $(DESTDIR)$(pkglibdir) +ifeq ($(enable_documentation),yes) for i in $(man1pages); do install -m 0644 $$i $(DESTDIR)$(mandir)/man1/$${i##*/}; done for i in $(man5pages); do install -m 0644 $$i $(DESTDIR)$(mandir)/man5/$${i##*/}; done for i in $(man7pages); do install -m 0644 $$i $(DESTDIR)$(mandir)/man7/$${i##*/}; done for i in $(man8pages); do install -m 0644 $$i $(DESTDIR)$(mandir)/man8/$${i##*/}; done ln -fs dracut.cmdline.7 $(DESTDIR)$(mandir)/man7/dracut.kernel.7 +endif if [ -n "$(systemdsystemunitdir)" ]; then \ mkdir -p $(DESTDIR)$(systemdsystemunitdir); \ install -m 0644 dracut-shutdown.service $(DESTDIR)$(systemdsystemunitdir); \ diff --git a/configure b/configure index 86323984b..409256bbe 100755 --- a/configure +++ b/configure @@ -7,6 +7,8 @@ echo \#buildapi-variable-no-builddir >/dev/null prefix=/usr +enable_documentation=yes + # Little helper function for reading args from the commandline. # it automatically handles -a b and -a=b variants, and returns 1 if # we need to shift $3. @@ -33,6 +35,7 @@ while (($# > 0)); do --sysconfdir) read_arg sysconfdir "$@" || shift;; --sbindir) read_arg sbindir "$@" || shift;; --mandir) read_arg mandir "$@" || shift;; + --disable-documentation) enable_documentation=no;; *) echo "Ignoring unknown option '$1'";; esac shift @@ -45,5 +48,6 @@ datadir ?= ${datadir:-${prefix}/share} sysconfdir ?= ${sysconfdir:-${prefix}/etc} sbindir ?= ${sbindir:-${prefix}/sbin} mandir ?= ${mandir:-${prefix}/share/man} +enable_documentation ?= ${enable_documentation} EOF mv Makefile.inc.tmp Makefile.inc