summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xConfigure6
-rw-r--r--arg.c9
-rw-r--r--patchlevel.h2
-rw-r--r--perl.h7
4 files changed, 15 insertions, 9 deletions
diff --git a/Configure b/Configure
index d32c305247..85ccf2d75b 100755
--- a/Configure
+++ b/Configure
@@ -8,7 +8,7 @@
# and edit it to reflect your system. Some packages may include samples
# of config.h for certain machines, so you might look for one of those.)
#
-# $Header: Configure,v 1.0.1.3 88/01/26 14:14:14 root Exp $
+# $Header: Configure,v 1.0.1.4 88/01/30 08:51:49 root Exp $
#
# Yes, you may rip this off to use in other distribution packages.
# (Note: this Configure script was generated automatically. Rather than
@@ -998,7 +998,7 @@ exit 0; _ _ _ _\1\\ \1\\
echo exit 1 >>/tmp/Cppsym\$\$
$cpp $cppminus </tmp/Cppsym\$\$ >/tmp/Cppsym2\$\$
case "\$list" in
-true) awk '\$6 != "" {print substr(\$6,2,100)}' </tmp/Cppsym2\$\$ ;;
+true) awk 'NF > 5 {print substr(\$6,2,100)}' </tmp/Cppsym2\$\$ ;;
*)
sh /tmp/Cppsym2\$\$
status=\$?
@@ -1379,7 +1379,7 @@ esac
echo " "
echo "Doing variable substitutions on .SH files..."
-set x `$grep '\.SH' <MANIFEST | awk '{print $1}'`
+set x `awk '{print $1}' <MANIFEST | $grep '\.SH'`
shift
case $# in
0) set x *.SH; shift;;
diff --git a/arg.c b/arg.c
index df4887ad3a..4ce4008742 100644
--- a/arg.c
+++ b/arg.c
@@ -1,6 +1,9 @@
-/* $Header: arg.c,v 1.0.1.4 88/01/28 10:22:06 root Exp $
+/* $Header: arg.c,v 1.0.1.5 88/01/30 08:53:16 root Exp $
*
* $Log: arg.c,v $
+ * Revision 1.0.1.5 88/01/30 08:53:16 root
+ * patch9: fixed some missing right parens introduced (?) by patch 2
+ *
* Revision 1.0.1.4 88/01/28 10:22:06 root
* patch8: added eval operator.
*
@@ -552,8 +555,8 @@ STR ***retary;
apush(ary,str_nmake((double)statbuf.st_blksize));
apush(ary,str_nmake((double)statbuf.st_blocks));
#else
- apush(ary,str_make("");
- apush(ary,str_make("");
+ apush(ary,str_make(""));
+ apush(ary,str_make(""));
#endif
}
sarg = (STR**)safemalloc((max+2)*sizeof(STR*));
diff --git a/patchlevel.h b/patchlevel.h
index a6997a9a35..618bca4808 100644
--- a/patchlevel.h
+++ b/patchlevel.h
@@ -1 +1 @@
-#define PATCHLEVEL 8
+#define PATCHLEVEL 9
diff --git a/perl.h b/perl.h
index 9b877f3e30..341afa8008 100644
--- a/perl.h
+++ b/perl.h
@@ -1,6 +1,9 @@
-/* $Header: perl.h,v 1.0.1.3 88/01/28 10:24:17 root Exp $
+/* $Header: perl.h,v 1.0.1.4 88/01/30 08:54:00 root Exp $
*
* $Log: perl.h,v $
+ * Revision 1.0.1.4 88/01/30 08:54:00 root
+ * patch9: changed #define YYDEBUG; to #define YYDEBUG 1
+ *
* Revision 1.0.1.3 88/01/28 10:24:17 root
* patch8: added eval operator.
*
@@ -184,7 +187,7 @@ EXT int debug INIT(0);
EXT int dlevel INIT(0);
EXT char debname[40];
EXT char debdelim[40];
-#define YYDEBUG;
+#define YYDEBUG 1
extern int yydebug;
#endif