diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-02-16 14:41:22 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2010-02-16 14:41:22 -0500 |
commit | 64f201ae65de7024bce0a85d6380ac158a3b5852 (patch) | |
tree | 4c70ab9f66331d726a7e8a06a63ba4b6657ad2b6 /doc | |
parent | 98f205119011c016ec902c69d882a26dd7185a43 (diff) |
specs: change install cmd due to automake 1.11
docData_INSTALL is defined in 1.9 and 1.10 but not 1.11
Reported-by: Tobias Droste <tdroste@gmx.de>
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index d648934..b84ff45 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -40,8 +40,8 @@ install-data-local: @d="$(srcdir)/images/"; \ list=`ls $$d`; \ for p in $$list; do \ - echo " $(docDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(imagesdir)/$$p'"; \ - $(docDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(imagesdir)/$$p"; \ + echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(imagesdir)/$$p'"; \ + $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(imagesdir)/$$p"; \ done; uninstall-local: |