Mercurial > emacs
changeset 6957:22e3af0deae4
(src/Makefile, lib-src/Makefile): Delete ^L. Fix definition of $undefs.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 19 Apr 1994 00:43:06 +0000 |
parents | d62ea6bf83dc |
children | 6962dec6fe55 |
files | configure1.in |
diffstat | 1 files changed, 5 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/configure1.in Tue Apr 19 00:31:42 1994 +0000 +++ b/configure1.in Tue Apr 19 00:43:06 1994 +0000 @@ -1577,10 +1577,9 @@ # 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 @@ -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 '/^[ ]*$/d' > Makefile.new rm -f junk.c chmod 444 Makefile.new; mv -f Makefile.new Makefile; @@ -1604,7 +1603,7 @@ -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 '/^[ ]*$/d' > Makefile.new rm -f junk.c chmod 444 Makefile.new; mv -f Makefile.new Makefile;