diff options
author | Daniel Burrows <dburrows@debian.org> | 2009-07-21 09:33:27 -0700 |
---|---|---|
committer | Daniel Burrows <dburrows@debian.org> | 2009-07-21 09:33:27 -0700 |
commit | 2c693f95cc416233ac93bbcd88e5485374217d9e (patch) | |
tree | b2de1bdc246994b00dbe2dc2fc0d6adbf1438fb3 | |
parent | f33849300860615aa30b950e0917406e34a91f26 (diff) | |
download | aptitude-2c693f95cc416233ac93bbcd88e5485374217d9e.tar.gz |
Fix the build system for the Spanish manual translation to handle DESTDIR correctly.
-rw-r--r-- | doc/es/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/es/Makefile.am b/doc/es/Makefile.am index 8b420872..475020c6 100644 --- a/doc/es/Makefile.am +++ b/doc/es/Makefile.am @@ -30,8 +30,8 @@ clean-local: install-data-hook: $(mkinstalldirs) $(DESTDIR)$(localemandir)/man8 $(INSTALL_DATA) $(MANPAGE) $(DESTDIR)$(localemandir)/man8/aptitude.8 - $(mkinstalldirs) $(htmldir)/images - $(INSTALL_DATA) output-html/*.html output-html/*.css $(htmldir) + $(mkinstalldirs) $(DESTDIR)$(htmldir)/images + $(INSTALL_DATA) output-html/*.html output-html/*.css $(DESTDIR)$(htmldir) # $(INSTALL_DATA) output-html/images/* $(htmldir)/images $(INSTALL_DATA) README.$(LANGCODE) $(DESTDIR)$(pkgdatadir)/README.$(LANGCODE) |