]> git.eshelyaron.com Git - emacs.git/commitdiff
* Makefile.in (install-arch-dep): Avoid using $$(..) construct,
authorChong Yidong <cyd@stupidchicken.com>
Mon, 4 May 2009 01:13:20 +0000 (01:13 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Mon, 4 May 2009 01:13:20 +0000 (01:13 +0000)
for Solaris compatibility.
* leim/Makefile.in (install): Avoid using $$(..) construct, for Solaris
compatibility.

ChangeLog
Makefile.in
leim/ChangeLog
leim/Makefile.in

index 5f5de7420c1cc67431bcb6e7124f9444d896675e..bb66706ddff610e0f62a386c8d51aa7ea2fe4a3f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-05-04   Simon Leinen  <simon.leinen@switch.ch>  (tiny change)
+
+       * Makefile.in (install-arch-dep): Avoid using $$(..) construct,
+       for Solaris compatibility.
+
 2009-04-25  Chong Yidong  <cyd@stupidchicken.com>
 
        * configure: Regenerate.
index 55a76cbba6d6af55b174744971f2a73fe171838d..4095976d7f9d59fe171c0583fe5c614d421e7c30 100644 (file)
@@ -403,7 +403,7 @@ $(srcdir)/src/stamp-h.in: $(AUTOCONF_INPUTS)
 install: all install-arch-indep install-arch-dep install-leim blessmail
        @true
 
-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 the executables that were compiled specifically for this machine.
 ### It would be nice to do something for a parallel make
index e27b95dfc556cf55f2d490d0a2f4244968ed3491..fb81d395a34fe32c6af026e24ce129b5c8648cad 100644 (file)
@@ -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.
index 8c394bf2185493eea5a03523ea9f97a885a3208c..afa9d7c44489e17761249f637cdd6c2ff6da4f46 100644 (file)
@@ -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 \