# HG changeset patch # User Chong Yidong # Date 1241399600 0 # Node ID bbc4e451e5dcca4df0b3d7801fac6219a128fc9e # Parent ba681b91f7168427c40bb9e33ac929cbffcf6cfb * Makefile.in (install-arch-dep): Avoid using $$(..) construct, for Solaris compatibility. * leim/Makefile.in (install): Avoid using $$(..) construct, for Solaris compatibility. diff -r ba681b91f716 -r bbc4e451e5dc ChangeLog --- a/ChangeLog Sun May 03 23:19:35 2009 +0000 +++ b/ChangeLog Mon May 04 01:13:20 2009 +0000 @@ -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 -r ba681b91f716 -r bbc4e451e5dc Makefile.in --- a/Makefile.in Sun May 03 23:19:35 2009 +0000 +++ b/Makefile.in Mon May 04 01:13:20 2009 +0000 @@ -403,7 +403,7 @@ 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 -r ba681b91f716 -r bbc4e451e5dc leim/ChangeLog --- a/leim/ChangeLog Sun May 03 23:19:35 2009 +0000 +++ b/leim/ChangeLog Mon May 04 01:13:20 2009 +0000 @@ -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 -r ba681b91f716 -r bbc4e451e5dc leim/Makefile.in --- a/leim/Makefile.in Sun May 03 23:19:35 2009 +0000 +++ b/leim/Makefile.in Mon May 04 01:13:20 2009 +0000 @@ -220,7 +220,7 @@ 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 \