summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-12-05 10:29:19 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-12-05 10:29:19 +0000
commit757205faa5e41a044d79120d188bf6edf2d0e2d6 (patch)
tree8c96387c25c38090c26fd56ef37f08311e0393b6
parent0ca9f2fe960116f87e44542eb426f4f6dc5ec522 (diff)
downloadpcre-757205faa5e41a044d79120d188bf6edf2d0e2d6.tar.gz
Include CheckMan in distribution (accidentally omitted) and put an explicit
"perl" before Perl scripts in PrepareRelease instead of relying on automatic execution because this helps in Windows. git-svn-id: svn://vcs.exim.org/pcre/code/trunk@783 2f5784b3-3f2a-0410-8824-cb99058d5e15
-rw-r--r--Makefile.am1
-rwxr-xr-xPrepareRelease12
2 files changed, 7 insertions, 6 deletions
diff --git a/Makefile.am b/Makefile.am
index 320becb..1cbb91a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -100,6 +100,7 @@ EXTRA_DIST += \
# These files are used in the preparation of a release
EXTRA_DIST += \
PrepareRelease \
+ CheckMan \
CleanTxt \
Detrail \
132html \
diff --git a/PrepareRelease b/PrepareRelease
index c079642..7123be6 100755
--- a/PrepareRelease
+++ b/PrepareRelease
@@ -37,7 +37,7 @@ echo Processing documentation
# Check the remaining man pages
-../CheckMan *.1 *.3
+perl ../CheckMan *.1 *.3
if [ $? != 0 ] ; then exit 1; fi
# Make Text form of the documentation. It needs some mangling to make it
@@ -64,7 +64,7 @@ for file in pcre pcrebuild pcrematching pcreapi pcrecallout pcrecompat \
pcrelimits pcrestack ; do
echo " Processing $file.3"
nroff -c -man $file.3 >$file.rawtxt
- ../CleanTxt <$file.rawtxt >>pcre.txt
+ perl ../CleanTxt <$file.rawtxt >>pcre.txt
/bin/rm $file.rawtxt
echo "------------------------------------------------------------------------------" >>pcre.txt
if [ "$file" != "pcresample" ] ; then
@@ -77,7 +77,7 @@ done
for file in pcretest pcregrep pcre-config ; do
echo Making $file.txt
nroff -c -man $file.1 >$file.rawtxt
- ../CleanTxt <$file.rawtxt >$file.txt
+ perl ../CleanTxt <$file.rawtxt >$file.txt
/bin/rm $file.rawtxt
done
@@ -126,7 +126,7 @@ cp index.html.src html/index.html
for file in *.1 ; do
base=`basename $file .1`
echo " Making $base.html"
- ../132html -toc $base <$file >html/$base.html
+ perl ../132html -toc $base <$file >html/$base.html
done
# Exclude table of contents for function summaries. It seems that expr
@@ -146,7 +146,7 @@ for file in *.3 ; do
toc=""
fi
echo " Making $base.html"
- ../132html $toc $base <$file >html/$base.html
+ perl ../132html $toc $base <$file >html/$base.html
if [ $? != 0 ] ; then exit 1; fi
done
@@ -235,7 +235,7 @@ files="\
libpcreposix.def"
echo Detrailing
-./Detrail $files doc/p* doc/html/*
+perl ./Detrail $files doc/p* doc/html/*
echo Doing basic configure to get default pcre.h and config.h
# This is in case the caller has set aliases (as I do - PH)