Mercurial > emacs
changeset 3790:554e6c290291
* Makefile.in (src/Makefile): Don't bother exiting single quotes
and entering double quotes to get the values of LD_SWITCH_X_SITE
and the other make variables; make substitutes them in anyway.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Thu, 17 Jun 1993 02:54:43 +0000 |
parents | 0af7cedb1081 |
children | b51e109425f1 |
files | Makefile.in |
diffstat | 1 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile.in Thu Jun 17 02:53:14 1993 +0000 +++ b/Makefile.in Thu Jun 17 02:54:43 1993 +0000 @@ -276,13 +276,13 @@ echo "# Emacs build tree instead, or editing" ; \ echo "# \`${srcdir}/src/Makefile.in' itself." ; \ sed < ${srcdir}/src/Makefile.in \ - -e 's|^\(srcdir *=\).*$$|\1'"${srcdir}"'/src|' \ - -e 's|^\(VPATH *=\).*$$|\1'"${srcdir}"'/src|' \ - -e 's|^CC *=.*$$|CC='"${CC}"'|' \ - -e 's|^CPP *=.*$$|CPP='"${CPP}"'|' \ - -e 's|^LN_S *=.*$$|LN_S='"${LN_S}"'|' \ - -e 's|^CFLAGS *=.*$$|CFLAGS='"${CFLAGS}"'|' \ - -e 's|^\(LD_SWITCH_X_SITE *=\).*$$|\1'"${LD_SWITCH_X_SITE}"'|' \ + -e 's|^\(srcdir *=\).*$$|\1${srcdir}/src|' \ + -e 's|^\(VPATH *=\).*$$|\1${srcdir}/src|' \ + -e 's|^CC *=.*$$|CC=${CC}|' \ + -e 's|^CPP *=.*$$|CPP=${CPP}|' \ + -e 's|^LN_S *=.*$$|LN_S=${LN_S}|' \ + -e 's|^CFLAGS *=.*$$|CFLAGS=${CFLAGS}|' \ + -e 's|^\(LD_SWITCH_X_SITE *=\).*$$|\1${LD_SWITCH_X_SITE}|' \ -e '/^# DIST: /d') > src/Makefile.tmp @${srcdir}/move-if-change src/Makefile.tmp src/Makefile chmod -w src/Makefile