[Pcre-svn] [783] code/trunk: Include CheckMan in distributio…

Top Page
Delete this message
Author: Subversion repository
Date:  
To: pcre-svn
Subject: [Pcre-svn] [783] code/trunk: Include CheckMan in distribution (accidentally omitted) and put an explicit
Revision: 783
          http://vcs.pcre.org/viewvc?view=rev&revision=783
Author:   ph10
Date:     2011-12-05 10:29:19 +0000 (Mon, 05 Dec 2011)


Log Message:
-----------
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.

Modified Paths:
--------------
    code/trunk/Makefile.am
    code/trunk/PrepareRelease


Modified: code/trunk/Makefile.am
===================================================================
--- code/trunk/Makefile.am    2011-12-03 23:58:37 UTC (rev 782)
+++ code/trunk/Makefile.am    2011-12-05 10:29:19 UTC (rev 783)
@@ -100,6 +100,7 @@
 # These files are used in the preparation of a release
 EXTRA_DIST += \
   PrepareRelease \
+  CheckMan \
   CleanTxt \
   Detrail \
   132html \


Modified: code/trunk/PrepareRelease
===================================================================
--- code/trunk/PrepareRelease    2011-12-03 23:58:37 UTC (rev 782)
+++ code/trunk/PrepareRelease    2011-12-05 10:29:19 UTC (rev 783)
@@ -37,7 +37,7 @@


# 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 @@
             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 @@
 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 @@
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 @@
     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 @@
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)