diff options
author | unknown <kent@mysql.com/kent-amd64.(none)> | 2006-11-28 18:04:10 +0100 |
---|---|---|
committer | unknown <kent@mysql.com/kent-amd64.(none)> | 2006-11-28 18:04:10 +0100 |
commit | 0fb7649940c849f4df4ceca7d01f5e8946ffbb0d (patch) | |
tree | 0a7f3a547e74c33431067082a463d85b8fba1884 /Docs | |
parent | eb63927caa73113bd1eb2017396a540168b6aeab (diff) | |
download | mariadb-git-0fb7649940c849f4df4ceca7d01f5e8946ffbb0d.tar.gz |
Makefile.am:
If using \$(srcdir)/mysql.info in action, use same in rule.
Docs/Makefile.am:
If using \$(srcdir)/mysql.info in action, use same in rule.
Diffstat (limited to 'Docs')
-rw-r--r-- | Docs/Makefile.am | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Docs/Makefile.am b/Docs/Makefile.am index 159dffddde8..85a362133a1 100644 --- a/Docs/Makefile.am +++ b/Docs/Makefile.am @@ -26,7 +26,7 @@ all-local: $(TXT_FILES) # make sure that "make install" installs the info page, too # automake only seems to take care of this automatically, # if we're building the info page from texi directly. -install-data-hook: mysql.info +install-data-hook: $(srcdir)/mysql.info $(mkinstalldirs) $(DESTDIR)$(infodir) $(INSTALL_DATA) $(srcdir)/mysql.info $(DESTDIR)$(infodir) @@ -39,22 +39,22 @@ CLEAN_FILES: $(TXT_FILES) GT = $(srcdir)/Support/generate-text-files.pl -../INSTALL-SOURCE: mysql.info $(GT) +../INSTALL-SOURCE: $(srcdir)/mysql.info $(GT) perl -w $(GT) $(srcdir)/mysql.info "installing-source" "windows-source-build" > $@ -../INSTALL-WIN-SOURCE: mysql.info $(GT) +../INSTALL-WIN-SOURCE: $(srcdir)/mysql.info $(GT) perl -w $(GT) $(srcdir)/mysql.info "windows-source-build" "post-installation" > $@ # We put the description for the binary installation here so that # people who download source wont have to see it. It is moved up to # the toplevel by the script that makes the binary tar files. -INSTALL-BINARY: mysql.info $(GT) +INSTALL-BINARY: $(srcdir)/mysql.info $(GT) perl -w $(GT) $(srcdir)/mysql.info "installing-binary" "installing-source" > $@ -../EXCEPTIONS-CLIENT: mysql.info $(GT) +../EXCEPTIONS-CLIENT: $(srcdir)/mysql.info $(GT) perl -w $(GT) $(srcdir)/mysql.info "mysql-floss-license-exception" "function-index" > $@ -../support-files/MacOSX/ReadMe.txt: mysql.info $(GT) +../support-files/MacOSX/ReadMe.txt: $(srcdir)/mysql.info $(GT) perl -w $(GT) $(srcdir)/mysql.info "mac-os-x-installation" "netware-installation" > $@ # Don't update the files from bitkeeper |