* Makefile.in (install-arch-dep): Avoid using $$(..) construct,

for Solaris compatibility.
* leim/Makefile.in (install): Avoid using $$(..) construct, for Solaris
compatibility.
This commit is contained in:
Chong Yidong 2009-05-04 01:13:20 +00:00
parent 2b4e72e1d5
commit 734dabe0ec
4 changed files with 12 additions and 2 deletions

View file

@ -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.

View 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

View 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.

View 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 \