summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-06-17 02:54:43 +0000
committerJim Blandy <jimb@redhat.com>1993-06-17 02:54:43 +0000
commitae5af3772a706b92097b96e4a26f65073328d4c5 (patch)
tree522ee83269a756234506579599591edf010c962a /Makefile.in
parent5dd75147a96864e71731b7bebc7d24d9d970cbab (diff)
downloademacs-ae5af3772a706b92097b96e4a26f65073328d4c5.tar.gz
* 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.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile.in b/Makefile.in
index 101fd8d75d2..0f67123d62b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -276,13 +276,13 @@ src/Makefile: ${srcdir}/src/Makefile.in Makefile
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