diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 5 | ||||
| -rw-r--r-- | lib-src/Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 9041eae8bbe..65ca56b17a8 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-09-06 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * Makefile.in ($(DESTDIR)${archlibdir}): install-sh moved | ||
| 4 | to build-aux (Bug#9169). | ||
| 5 | |||
| 1 | 2011-09-04 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2011-09-04 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | Integer and memory overflow issues (Bug#9397). | 8 | Integer and memory overflow issues (Bug#9397). |
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index f619febbb2b..499305ec512 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -229,13 +229,13 @@ maybe-blessmail: $(BLESSMAIL_TARGET) | |||
| 229 | $(DESTDIR)${archlibdir}: all | 229 | $(DESTDIR)${archlibdir}: all |
| 230 | @echo | 230 | @echo |
| 231 | @echo "Installing utilities run internally by Emacs." | 231 | @echo "Installing utilities run internally by Emacs." |
| 232 | umask 022; $(top_srcdir)/install-sh -d $(DESTDIR)${archlibdir} | 232 | umask 022; $(top_srcdir)/build-aux/install-sh -d $(DESTDIR)${archlibdir} |
| 233 | if [ `(cd $(DESTDIR)${archlibdir} && /bin/pwd)` != `/bin/pwd` ]; then \ | 233 | if [ `(cd $(DESTDIR)${archlibdir} && /bin/pwd)` != `/bin/pwd` ]; then \ |
| 234 | for file in ${UTILITIES}; do \ | 234 | for file in ${UTILITIES}; do \ |
| 235 | $(INSTALL_PROGRAM) $(INSTALL_STRIP) $$file $(DESTDIR)${archlibdir}/$$file ; \ | 235 | $(INSTALL_PROGRAM) $(INSTALL_STRIP) $$file $(DESTDIR)${archlibdir}/$$file ; \ |
| 236 | done ; \ | 236 | done ; \ |
| 237 | fi | 237 | fi |
| 238 | umask 022; $(top_srcdir)/install-sh -d $(DESTDIR)${gamedir}; \ | 238 | umask 022; $(top_srcdir)/build-aux/install-sh -d $(DESTDIR)${gamedir}; \ |
| 239 | touch $(DESTDIR)${gamedir}/snake-scores; \ | 239 | touch $(DESTDIR)${gamedir}/snake-scores; \ |
| 240 | touch $(DESTDIR)${gamedir}/tetris-scores | 240 | touch $(DESTDIR)${gamedir}/tetris-scores |
| 241 | -if chown ${gameuser} $(DESTDIR)${archlibdir}/update-game-score && chmod u+s $(DESTDIR)${archlibdir}/update-game-score; then \ | 241 | -if chown ${gameuser} $(DESTDIR)${archlibdir}/update-game-score && chmod u+s $(DESTDIR)${archlibdir}/update-game-score; then \ |