summaryrefslogtreecommitdiff
path: root/PrepareRelease
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-12-28 17:16:11 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-12-28 17:16:11 +0000
commit5e8b286b566d7ec502b80892e5b709025631d58c (patch)
treec8a6c83ad13e79a9b64718b784fe0126764d98b7 /PrepareRelease
parenta29cc4dc66d82b59de7616c53517c58271e6e0e8 (diff)
downloadpcre-5e8b286b566d7ec502b80892e5b709025631d58c.tar.gz
Merging all the changes from the pcre16 branch into the trunk.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@836 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'PrepareRelease')
-rwxr-xr-xPrepareRelease14
1 files changed, 7 insertions, 7 deletions
diff --git a/PrepareRelease b/PrepareRelease
index c079642..643318e 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
@@ -194,6 +194,7 @@ files="\
pcreposix.h \
pcre.h.in \
pcre_internal.h
+ pcre_byte_order.c \
pcre_compile.c \
pcre_config.c \
pcre_dfa_exec.c \
@@ -210,7 +211,6 @@ files="\
pcre_refcount.c \
pcre_study.c \
pcre_tables.c \
- pcre_try_flipped.c \
pcre_ucp_searchfuncs.c \
pcre_valid_utf8.c \
pcre_version.c \
@@ -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)