]> git.eshelyaron.com Git - emacs.git/commitdiff
(src/Makefile, lib-src/Makefile): Delete ^L. Fix definition of $undefs.
authorKarl Heuer <kwzh@gnu.org>
Tue, 19 Apr 1994 00:43:06 +0000 (00:43 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 19 Apr 1994 00:43:06 +0000 (00:43 +0000)
configure1.in

index b8fa83ec2a9c78b5a1b78150802bdabbece8194b..b9987e59cf675b2cdfd20ddaef38abc0dff7321c 100755 (executable)
@@ -1577,10 +1577,9 @@ changequote(,)dnl The horror, the horror.
 # the C preprocessor to some helpful value like 1, or maybe the empty
 # string.  Needless to say consequent macro substitutions are less
 # than conducive to the makefile finding the correct directory.
-undefs="`echo $top_srcdir $configuration | 
-sed -e 's/[^a-zA-Z0-9_]/ /g' -e 's/  */ -U/g'  \
-    -e 's/ -U$//' -e 's/^[^ ]/-U/' \
-    -e 's/-U[0-9][^ ]*//g' \
+undefs="`echo $top_srcdir $configuration |
+sed -e 's/[^a-zA-Z0-9_]/ /g' -e 's/^/ /' -e 's/  *$//' \
+    -e 's/  */ -U/g' -e 's/-U[0-9][^ ]*//g' \
 `"
 changequote([,])dnl
 
@@ -1591,7 +1590,7 @@ echo creating lib-src/Makefile
       -e 's@/\*\*/#\(.*\)$@/* \1 */@' \
       < Makefile.in > junk.c
   $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c |
-  sed -e 's/^ /        /' -e '/^#/d' -e '/^[   ]*$/d' > Makefile.new
+  sed -e 's/^ /        /' -e '/^#/d' -e '/^[   \f]*$/d' > Makefile.new
   rm -f junk.c
   chmod 444 Makefile.new;
   mv -f Makefile.new Makefile;
@@ -1604,7 +1603,7 @@ echo creating src/Makefile
       -e 's@/\*\*/#\(.*\)$@/* \1 */@' \
       < Makefile.in > junk.c
   $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c |
-  sed -e 's/^ /        /' -e '/^#/d' -e '/^[   ]*$/d' > Makefile.new
+  sed -e 's/^ /        /' -e '/^#/d' -e '/^[   \f]*$/d' > Makefile.new
   rm -f junk.c
   chmod 444 Makefile.new;
   mv -f Makefile.new Makefile;