]> git.eshelyaron.com Git - emacs.git/commitdiff
(creating src/Makefile): Before running cpp,
authorRichard M. Stallman <rms@gnu.org>
Sat, 13 Nov 1993 10:02:57 +0000 (10:02 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 13 Nov 1993 10:02:57 +0000 (10:02 +0000)
discard all lines that start with # or /**/#.

configure1.in

index 6414e99e89c40c8e4a2802ec675b479609f6ba36..53f1bb5e17a16f394963cd49eda851cb51aea8ad 100755 (executable)
@@ -1407,10 +1407,14 @@ if [ ! -f ./config.status ]; then
    exit $status
 fi
 topsrcdir=${srcdir}
+  # We discard all lines in Makefile.in that start with # or /**/#
+  # because some cpps get confused by them.
+  # Really we should preserve them somehow into Makefile,
+  # but that is beyond my level of shell programming.
 makefile_command='echo "creating src/Makefile";
   topsrcdir='"${topsrcdir}"';
 ( cd ./src;
-  cp Makefile.in junk.c;
+  sed -e '\''s/^#.*//'\'' -e '\''s%/\*\*/#.*%%'\'' < Makefile.in > junk.c;
   eval `echo ${CPP} -I. -I${topsrcdir}/src ${CPPFLAGS} junk.c \>junk.cpp`;
   < junk.cpp                                                   '\
 '    sed -e '\''s/^#.*//'\''                                   '\