diff options
author | Rémy Oudompheng <remy@archlinux.org> | 2011-07-14 12:18:12 +0200 |
---|---|---|
committer | Rémy Oudompheng <remy@archlinux.org> | 2011-07-14 12:18:12 +0200 |
commit | 0e4475d449b0ba83b1d694a5aef6ccea5d7f9ad8 (patch) | |
tree | 81f5491449523a83455294bff1a77220b6425de3 | |
parent | 62cbab2ca3ae799b27fcc3a97f0e52ad5ccc69e6 (diff) | |
download | netctl-0e4475d449b0ba83b1d694a5aef6ccea5d7f9ad8.tar.gz netctl-0e4475d449b0ba83b1d694a5aef6ccea5d7f9ad8.tar.xz |
Update make scripts with new doc paths.
Signed-off-by: Rémy Oudompheng <remy@archlinux.org>
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | docs/makewebsite.sh | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -11,6 +11,8 @@ install: install -m644 config/iftab $(DESTDIR)/etc/iftab install -m644 docs/examples/* $(DESTDIR)/etc/network.d/examples/ # Documentation + install -d $(DESTDIR)/usr/share/man/man5 + install -m644 docs/man/*.5 $(DESTDIR)/usr/share/man/man5 install -d $(DESTDIR)/usr/share/man/man8 install -m644 docs/man/*.8 $(DESTDIR)/usr/share/man/man8 # Libs diff --git a/docs/makewebsite.sh b/docs/makewebsite.sh index 06d8f6d..bb3d000 100755 --- a/docs/makewebsite.sh +++ b/docs/makewebsite.sh @@ -1,5 +1,5 @@ #! /bin/bash -PAGES=(index ethernet features wireless) +PAGES=(index features netcfg netcfg-profiles) for page in ${PAGES[@]}; do rm ${page}.html |