summaryrefslogtreecommitdiff
path: root/leim
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2009-05-04 01:13:20 +0000
committerChong Yidong <cyd@stupidchicken.com>2009-05-04 01:13:20 +0000
commit728aa74033265da258c021e82a403adfe8bf5ca7 (patch)
tree50417fb14d8cd28880fbead662a1049825ac3564 /leim
parent05f36b8ebb09e454f1ce5b3f4e6604be534ac46e (diff)
downloademacs-728aa74033265da258c021e82a403adfe8bf5ca7.tar.gz
* Makefile.in (install-arch-dep): Avoid using $$(..) construct,
for Solaris compatibility. * leim/Makefile.in (install): Avoid using $$(..) construct, for Solaris compatibility.
Diffstat (limited to 'leim')
-rw-r--r--leim/ChangeLog5
-rw-r--r--leim/Makefile.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog
index e27b95dfc55..fb81d395a34 100644
--- a/leim/ChangeLog
+++ b/leim/ChangeLog
@@ -1,3 +1,8 @@
+2009-05-04 Simon Leinen <simon.leinen@switch.ch> (tiny change)
+
+ * Makefile.in (install): Avoid using $$(..) construct, for Solaris
+ compatibility.
+
2009-04-12 Andreas Schwab <schwab@linux-m68k.org>
* Makefile.in (install): Remove .gitignore files.
diff --git a/leim/Makefile.in b/leim/Makefile.in
index 8c394bf2185..afa9d7c4448 100644
--- a/leim/Makefile.in
+++ b/leim/Makefile.in
@@ -220,7 +220,7 @@ leim-list.el: ${SUBDIRS} ${TIT-MISC} changed.tit changed.misc ${srcdir}/leim-ext
fi
sed -n '/^[^;]/ p' < ${srcdir}/leim-ext.el >> $@
-MV_DIRS = for i in $$dir; do rm -fr $$(basename "$$i") ; mv "$$i" . ; done
+MV_DIRS = for i in $$dir; do rm -fr `basename "$$i"` ; mv "$$i" . ; done
install: all
if [ ! -d ${INSTALLDIR} ] ; then \