diff options
author | Dan McGee <dan@archlinux.org> | 2008-01-03 03:44:09 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-01-05 21:37:24 +0100 |
commit | 7417d9d81c494a67d8ad983ccc9bbc6f58d07fca (patch) | |
tree | 675bf7c8516a6bae087f88292e44e3d3c7d9b29a /doc | |
parent | c26039240db12794ad3f5b3d87c498b61a75e95b (diff) | |
download | pacman-7417d9d81c494a67d8ad983ccc9bbc6f58d07fca.tar.gz pacman-7417d9d81c494a67d8ad983ccc9bbc6f58d07fca.tar.xz |
doc: add symlink for repo-remove manpage on install
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/.gitignore | 1 | ||||
-rw-r--r-- | doc/Makefile.am | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/.gitignore b/doc/.gitignore index e10f61a4..a3941ecd 100644 --- a/doc/.gitignore +++ b/doc/.gitignore @@ -5,5 +5,6 @@ makepkg.conf.5 pacman.8 pacman.conf.5 repo-add.8 +repo-remove.8 *.xml man3 diff --git a/doc/Makefile.am b/doc/Makefile.am index 1cdc6b9c..eba950e3 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -33,7 +33,7 @@ MOSTLYCLEANFILES = *.xml MAINTAINERCLEANFILES = $(ASCIIDOC_MANS) man_MANS = -dist_man_MANS = $(ASCIIDOC_MANS) +dist_man_MANS = $(ASCIIDOC_MANS) repo-remove.8 if USE_DOXYGEN man_MANS += $(DOXYGEN_MANS) @@ -68,6 +68,9 @@ PKGBUILD.5: PKGBUILD.5.txt PKGBUILD-example.txt makepkg.conf.5: makepkg.conf.5.txt pacman.conf.5: pacman.conf.5.txt libalpm.3: libalpm.3.txt +# this one is just a symlink +repo-remove.8: repo-add.8 + ln -s repo-add.8 repo-remove.8 endif # vim:set ts=2 sw=2 noet: |