From: Michael Gebetsroither Date: Fri, 29 Aug 2008 11:20:33 +0000 (+0200) Subject: added doc/ to debian/rules X-Git-Tag: 1.1.10~4 X-Git-Url: http://git.grml.org/?p=grml-scripts.git;a=commitdiff_plain;h=b78d9a653c75db151967d13ec6493016981950d5 added doc/ to debian/rules --- diff --git a/debian/changelog b/debian/changelog index 9bf565e..872db71 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ grml-scripts (1.1.10) UNRELEASED; urgency=low - * added grml-chroot + * added grml-chroot including manpage -- Michael Gebetsroither Fri, 29 Aug 2008 11:59:41 +0200 diff --git a/debian/rules b/debian/rules index b1ccc30..8486c49 100755 --- a/debian/rules +++ b/debian/rules @@ -10,7 +10,7 @@ build: build-stamp build-stamp: dh_testdir - cd $(CURDIR)/compile/ && make + ( cd $(CURDIR)/compile/ && make ) touch build-stamp clean: @@ -20,7 +20,8 @@ clean: # Add here commands to clean up after the build process. rm -rf $(CURDIR)/debian/grml-scripts/ - cd compile ; make clean + ( cd compile ; make clean ) + ( cd doc && make clean ) dh_clean @@ -45,7 +46,7 @@ install: build # Build architecture-independent files here. binary-indep: build install -# We have nothing to do by default. + ( cd $(CURDIR)/doc && make doc_man ) # Build architecture-dependent files here. binary-arch: build install @@ -53,6 +54,7 @@ binary-arch: build install dh_testroot dh_installchangelogs dh_installdocs + dh_installman $(wildcard doc/*.gz) dh_installman manpages/arename.1 manpages/grml-scripts.1 \ manpages/reread_partition_table.8 manpages/random-hostname.1 \ manpages/grml-setkeyboard.8 manpages/grml-setlang.8 manpages/getsf.1 \