aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-05-04 01:13:20 +0000
committerChong Yidong2009-05-04 01:13:20 +0000
commit734dabe0eceb575fcb94d1bb32152a1ab37e880f (patch)
tree87b2c3d954708ec524953c2de8a4dd8a9db1dd06
parent2b4e72e1d5ccecf590125c022a78a88755c779e5 (diff)
downloademacs-734dabe0eceb575fcb94d1bb32152a1ab37e880f.tar.gz
emacs-734dabe0eceb575fcb94d1bb32152a1ab37e880f.zip
* Makefile.in (install-arch-dep): Avoid using $$(..) construct,
for Solaris compatibility. * leim/Makefile.in (install): Avoid using $$(..) construct, for Solaris compatibility.
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.in2
-rw-r--r--leim/ChangeLog5
-rw-r--r--leim/Makefile.in2
4 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5f5de7420c1..bb66706ddff 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12009-05-04 Simon Leinen <simon.leinen@switch.ch> (tiny change)
2
3 * Makefile.in (install-arch-dep): Avoid using $$(..) construct,
4 for Solaris compatibility.
5
12009-04-25 Chong Yidong <cyd@stupidchicken.com> 62009-04-25 Chong Yidong <cyd@stupidchicken.com>
2 7
3 * configure: Regenerate. 8 * 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)
403install: all install-arch-indep install-arch-dep install-leim blessmail 403install: all install-arch-indep install-arch-dep install-leim blessmail
404 @true 404 @true
405 405
406MV_DIRS = for i in $$dir; do rm -fr $$(basename "$$i") ; mv "$$i" . ; done 406MV_DIRS = for i in $$dir; do rm -fr `basename "$$i"` ; mv "$$i" . ; done
407 407
408### Install the executables that were compiled specifically for this machine. 408### Install the executables that were compiled specifically for this machine.
409### It would be nice to do something for a parallel make 409### 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 @@
12009-05-04 Simon Leinen <simon.leinen@switch.ch> (tiny change)
2
3 * Makefile.in (install): Avoid using $$(..) construct, for Solaris
4 compatibility.
5
12009-04-12 Andreas Schwab <schwab@linux-m68k.org> 62009-04-12 Andreas Schwab <schwab@linux-m68k.org>
2 7
3 * Makefile.in (install): Remove .gitignore files. 8 * 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
220 fi 220 fi
221 sed -n '/^[^;]/ p' < ${srcdir}/leim-ext.el >> $@ 221 sed -n '/^[^;]/ p' < ${srcdir}/leim-ext.el >> $@
222 222
223MV_DIRS = for i in $$dir; do rm -fr $$(basename "$$i") ; mv "$$i" . ; done 223MV_DIRS = for i in $$dir; do rm -fr `basename "$$i"` ; mv "$$i" . ; done
224 224
225install: all 225install: all
226 if [ ! -d ${INSTALLDIR} ] ; then \ 226 if [ ! -d ${INSTALLDIR} ] ; then \