diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-03-19 01:38:11 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-03-19 01:38:11 +0000 |
commit | b28dcd8e13e40f1f894a2057466fc7867d07c76c (patch) | |
tree | b2b5b31da046a106ae30457a564eacfa31e5980d /manual/Makefile | |
parent | b5d51280fe5c13451afebe964485184ceb0071f4 (diff) | |
download | glibc-b28dcd8e13e40f1f894a2057466fc7867d07c76c.zip glibc-b28dcd8e13e40f1f894a2057466fc7867d07c76c.tar.gz glibc-b28dcd8e13e40f1f894a2057466fc7867d07c76c.tar.bz2 |
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/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/Makefile b/manual/Makefile index 0f64af4..34cd515 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;\ |