summaryrefslogtreecommitdiff
path: root/leim
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2012-05-20 17:44:34 -0700
committerGlenn Morris <rgm@gnu.org>2012-05-20 17:44:34 -0700
commitb847032c75e0cb4041a8736886e7054beb6f8696 (patch)
treebb6b972803658022ca3ac04629105f14c204a1b9 /leim
parent1b170bc63c2f3a3fbe6ba6996d5a015e82634909 (diff)
downloademacs-b847032c75e0cb4041a8736886e7054beb6f8696.tar.gz
Command substitution already runs in a subshell
* Makefile.in (install-arch-indep, install-doc, install-info, uninstall): * leim/Makefile.in (leim-list.el, install): * lib-src/Makefile.in (insrcdir, $(DESTDIR)${archlibdir}): * lisp/Makefile.in (setwins, setwins_almost, setwins_for_subdirs): * test/automated/Makefile.in (setwins): Scrap superfluous subshells.
Diffstat (limited to 'leim')
-rw-r--r--leim/ChangeLog4
-rw-r--r--leim/Makefile.in6
2 files changed, 7 insertions, 3 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog
index 560e1d53da6..b2fa25b2d2e 100644
--- a/leim/ChangeLog
+++ b/leim/ChangeLog
@@ -1,3 +1,7 @@
+2012-05-21 Glenn Morris <rgm@gnu.org>
+
+ * Makefile.in (leim-list.el, install): Scrap superfluous subshells.
+
2012-05-12 Glenn Morris <rgm@gnu.org>
* Makefile.in (MKDIR_P): New, set by configure.
diff --git a/leim/Makefile.in b/leim/Makefile.in
index 646102eee71..2e488197b2a 100644
--- a/leim/Makefile.in
+++ b/leim/Makefile.in
@@ -157,7 +157,7 @@ changed.misc: ${SUBDIRS} ${MISC_SOURCES}
leim-list.el: ${SUBDIRS} ${TIT_MISC} ${srcdir}/leim-ext.el
rm -f leim-list.el
- if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
+ if [ x`cd ${srcdir} && /bin/pwd` = x`/bin/pwd` ] ; then \
${RUN_EMACS} -l ${buildlisppath}/international/quail \
--eval "(update-leim-list-file \".\")" ; \
else \
@@ -191,11 +191,11 @@ compile-main: ${TIT_MISC}
install: all
umask 022; ${MKDIR_P} ${LEIM_INSTALLDIR}
- if [ x`(cd ${LEIM_INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
+ if [ x`cd ${LEIM_INSTALLDIR} && /bin/pwd` != x`/bin/pwd` ] ; then \
rm -f ${LEIM_INSTALLDIR}/leim-list.el; \
rm -rf ${LEIM_INSTALLDIR}/quail ${LEIM_INSTALLDIR}/ja-dic ; \
echo "Copying leim files to ${LEIM_INSTALLDIR} ..." ; \
- if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
+ if [ x`cd ${srcdir} && /bin/pwd` = x`/bin/pwd` ] ; then \
tar -chf - leim-list.el quail ja-dic \
| (cd ${LEIM_INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
else \