Do not clean input file. This would write to the $(srcdir) during a
authorMarius Vollmer <mvo@zagadka.de>
Wed, 17 Apr 2002 17:44:28 +0000 (17:44 +0000)
committerMarius Vollmer <mvo@zagadka.de>
Wed, 17 Apr 2002 17:44:28 +0000 (17:44 +0000)
VPATH build, which is not allowed.  It also isn't needed since it only
works when an output filename has been specified and in that case we
don't need to clean the input file because the output file will
already exist.

libguile/ChangeLog
libguile/guile-snarf.in

index 21e358b..af1374d 100644 (file)
@@ -1,3 +1,16 @@
+2002-04-17  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       * Makefile.am (EXTRA_DIST): Added cpp_err_symbols.c and
+       cpp_sig_symbols.c.
+
+2002-04-16  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       * guile-snarf.in: Do not clean input file.  This would write to
+       the $(srcdir) during a VPATH build, which is not allowed.  It also
+       isn't needed since it only works when an output filename has been
+       specified and in that case we don't need to clean the input file
+       because the output file will already exist.
+
 2002-03-31  Marius Vollmer  <mvo@zagadka.ping.de>
 
        * guile-snarf: Install the trap for removing $cleanfile only when
index aaa6926..3d9ac95 100644 (file)
 #
 # Process INFILE using the C pre-processor and some other programs.
 # Write output to a file named OUTFILE or to the standard output when no
-# OUTFILE has been specified or when OUTFILE is "-".  When writing
-# to a file, ignore lines from the input matching the following grep(1)
-# regular expression:
-#
-#       ^#include ".*OUTFILE"
+# OUTFILE has been specified or when OUTFILE is "-".
 #
 # If there are errors during processing, delete OUTFILE and exit with
 # non-zero status.
@@ -110,16 +106,7 @@ if [ x"$CPP" = x ] ; then cpp="@CPP@" ; else cpp="$CPP" ; fi
 trap "rm -f $temp" 0 1 2 15
 
 if [ ! "$outfile" = "-" ]; then
-    self_blind_regexp='^#include ".*'`basename $outfile`'"'
-    clean_infile=$infile.clean.c        # temp file in same dir as infile
-                                        # so that #include "foo" works
-                                        # (e.g., see libguile/eval.c).
-                                        # use .c to satisfy cpp heuristics.
-
-    # clean input file
-    trap "rm -f $cleanfile" 0 1 2 15
-    grep -v "$self_blind_regexp" $infile > $clean_infile
-    modern_snarf "$@" $clean_infile > $outfile
+    modern_snarf "$@" $infile > $outfile
 else
     modern_snarf "$@" $infile
 fi