[asterisk-addons-commits] tzafrir: branch 1.6.2 r1077 - /branches/1.6.2/Makefile
SVN commits to the Asterisk addons project
asterisk-addons-commits at lists.digium.com
Sat Dec 19 07:51:27 CST 2009
Author: tzafrir
Date: Sat Dec 19 07:51:24 2009
New Revision: 1077
URL: http://svnview.digium.com/svn/asterisk-addons?view=rev&rev=1077
Log:
Missing DESTDIR that broke Debian packaging.
Modified:
branches/1.6.2/Makefile
Modified: branches/1.6.2/Makefile
URL: http://svnview.digium.com/svn/asterisk-addons/branches/1.6.2/Makefile?view=diff&rev=1077&r1=1076&r2=1077
==============================================================================
--- branches/1.6.2/Makefile (original)
+++ branches/1.6.2/Makefile Sat Dec 19 07:51:24 2009
@@ -185,7 +185,8 @@
install-xmldoc: doc/addons-en_US.xml
@echo "Installing XML documentation"
- @$(INSTALL) -m 644 doc/addons-*.xml $(ASTDATADIR)/documentation
+ @$(INSTALL) -d $(DESTDIR)$(ASTDATADIR)/documentation
+ @$(INSTALL) -m 644 doc/addons-*.xml $(DESTDIR)$(ASTDATADIR)/documentation
cleantest:
More information about the asterisk-addons-commits
mailing list