From: Chong Yidong Date: Mon, 4 May 2009 01:13:20 +0000 (+0000) Subject: * Makefile.in (install-arch-dep): Avoid using $$(..) construct, X-Git-Tag: emacs-pretest-23.0.94~125 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=734dabe0eceb575fcb94d1bb32152a1ab37e880f;p=emacs.git * Makefile.in (install-arch-dep): Avoid using $$(..) construct, for Solaris compatibility. * leim/Makefile.in (install): Avoid using $$(..) construct, for Solaris compatibility. --- diff --git a/ChangeLog b/ChangeLog index 5f5de7420c1..bb66706ddff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-05-04 Simon Leinen (tiny change) + + * Makefile.in (install-arch-dep): Avoid using $$(..) construct, + for Solaris compatibility. + 2009-04-25 Chong Yidong * configure: Regenerate. diff --git a/Makefile.in b/Makefile.in index 55a76cbba6d..4095976d7f9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 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 (tiny change) + + * Makefile.in (install): Avoid using $$(..) construct, for Solaris + compatibility. + 2009-04-12 Andreas Schwab * 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 \