summaryrefslogtreecommitdiff
path: root/manual/Makefile
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-03-19 01:38:11 +0000
committerUlrich Drepper <drepper@redhat.com>2001-03-19 01:38:11 +0000
commitb28dcd8e13e40f1f894a2057466fc7867d07c76c (patch)
treeb2b5b31da046a106ae30457a564eacfa31e5980d /manual/Makefile
parentb5d51280fe5c13451afebe964485184ceb0071f4 (diff)
Update.
2001-03-17 H.J. Lu <hjl@gnu.org> * manual/Makefile (install): Use $(INSTALL_DATA) instead of cp to install `dir'.
Diffstat (limited to 'manual/Makefile')
-rw-r--r--manual/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/Makefile b/manual/Makefile
index 0f64af4915..34cd51511f 100644
--- a/manual/Makefile
+++ b/manual/Makefile
@@ -178,14 +178,14 @@ ifneq ($(strip $(MAKEINFO)),:)
ifneq ($(OLD_DEBIAN_INSTALL_INFO),yes)
install: $(inst_infodir)/libc.info dir-add.info
@if $(SHELL) -c '$(INSTALL_INFO) --version' >/dev/null 2>&1; then \
- test -f $(inst_infodir)/dir || cp dir $(inst_infodir);\
+ test -f $(inst_infodir)/dir || $(INSTALL_DATA) dir $(inst_infodir);\
$(INSTALL_INFO) --info-dir=$(inst_infodir) $(inst_infodir)/libc.info;\
$(INSTALL_INFO) --info-dir=$(inst_infodir) dir-add.info;\
else : ; fi
else
install: $(inst_infodir)/libc.info dir-add.info
@if $(SHELL) -c '$(INSTALL_INFO) --version' >/dev/null 2>&1; then \
- test -f $(inst_infodir)/dir || cp dir $(inst_infodir);\
+ test -f $(inst_infodir)/dir || $(INSTALL_DATA) dir $(inst_infodir);\
$(INSTALL_INFO) --info-dir=$(inst_infodir) \
--section '^GNU Libraries:' 'GNU Libraries:' \
$(inst_infodir)/libc.info;\