summaryrefslogtreecommitdiff
path: root/libarchive/libarchive-2.5.5/doc/update.sh
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2009-11-15 18:32:03 +0100
committerTomas Bzatek <tbzatek@users.sourceforge.net>2009-11-15 18:32:03 +0100
commitcb3baab306e5951dc3a176fd9061f596a05b4729 (patch)
tree1074fd193e9be7e62aa431effde391213705fc36 /libarchive/libarchive-2.5.5/doc/update.sh
parentc10a5c533a5b71c03f0e8d52dea81eb77dbebfd7 (diff)
downloadtuxcmd-modules-cb3baab306e5951dc3a176fd9061f596a05b4729.tar.xz
Rebase libarchive to 2.7.1
Diffstat (limited to 'libarchive/libarchive-2.5.5/doc/update.sh')
-rw-r--r--libarchive/libarchive-2.5.5/doc/update.sh47
1 files changed, 0 insertions, 47 deletions
diff --git a/libarchive/libarchive-2.5.5/doc/update.sh b/libarchive/libarchive-2.5.5/doc/update.sh
deleted file mode 100644
index 644b90a..0000000
--- a/libarchive/libarchive-2.5.5/doc/update.sh
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/bin/sh
-
-#
-# Simple script to repopulate the 'doc' tree from
-# the mdoc man pages stored in each project.
-#
-
-# Remove existing manpages from the doc tree
-chmod -R +w man text
-rm -f man/*.[135]
-rm -f text/*.[135]
-
-# Build Makefile in 'man' directory
-cd man
-echo > Makefile
-echo "default: all" >>Makefile
-echo >>Makefile
-all="all:"
-for d in libarchive tar cpio; do
- for f in ../../$d/*.[135]; do
- echo >> Makefile
- echo `basename $f`: ../mdoc2man.awk $f >> Makefile
- echo " awk -f ../mdoc2man.awk < $f > `basename $f`" >> Makefile
- all="$all `basename $f`"
- done
-done
-echo $all >>Makefile
-cd ..
-
-# Rebuild Makefile in 'text' directory
-cd text
-echo > Makefile
-echo "$all" >>Makefile
-echo >>Makefile
-for d in libarchive tar cpio; do
- for f in ../../$d/*.[135]; do
- echo >> Makefile
- echo `basename $f`: $f >> Makefile
- echo " nroff -mdoc $f | col -b > `basename $f`" >> Makefile
- done
-done
-cd ..
-
-# Convert all of the manpages to -man format.
-(cd man && make)
-# Format all of the manpages to text
-(cd text && make)