diff options
author | unknown <tim@threads.polyesthetic.msg> | 2001-02-01 20:49:04 -0500 |
---|---|---|
committer | unknown <tim@threads.polyesthetic.msg> | 2001-02-01 20:49:04 -0500 |
commit | a556607baff14099016cda9611b7715fa776f28e (patch) | |
tree | da5df29683c61c981d50c49d190f7ddc471786c5 /Docs/Makefile.am | |
parent | c1c2b95996e491b8146b31eaa40c6261dafa4a20 (diff) | |
download | mariadb-git-a556607baff14099016cda9611b7715fa776f28e.tar.gz |
Use INSTALL_DATA instead of cp.
mysql.server is a script, not data.
Docs/Makefile.am:
Use INSTALL_DATA instead of cp
libmysql/Makefile.am:
Use INSTALL_DATA instead of cp
mysql-test/Makefile.am:
Use INSTALL_DATA instead of cp
sql-bench/Makefile.am:
Use INSTALL_DATA instead of cp
support-files/Makefile.am:
mysql.server is a script, not data.
Diffstat (limited to 'Docs/Makefile.am')
-rw-r--r-- | Docs/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Docs/Makefile.am b/Docs/Makefile.am index 3d8c3e39905..c4da4e9d0d3 100644 --- a/Docs/Makefile.am +++ b/Docs/Makefile.am @@ -115,8 +115,8 @@ manual_letter.ps: manual.texi include.texi dist-hook: BD=`cd $(top_srcdir); pwd`; \ if test ! -d $(distdir)/Flags; then mkdir -p $(distdir)/Flags; fi; \ - cp -p $(srcdir)/Flags/*.gif $(srcdir)/Flags/*.eps $(srcdir)/Flags/*.txt \ - $(distdir)/Flags; + $(INSTALL_DATA) $(srcdir)/Flags/*.gif $(srcdir)/Flags/*.eps \ + $(srcdir)/Flags/*.txt $(distdir)/Flags; echo "PostScript and PDF versions suitable for printing" \ > $(distdir)/manual.ps echo "are available from http://www.mysql.com/Manual/" \ |