From edf2f35409952b57a37fe05315d7d67b8aca0519 Mon Sep 17 00:00:00 2001 From: Mirko Tietgen Date: Wed, 25 Feb 2015 15:53:57 +0100 Subject: [PATCH] Bug 13759 - git-build-snapshot misses YUI and dies of sorrow during build Due to a line in debian/rules, git-build-snapshot tries to delete a YUI-related path that does not exist anymore (bug 13612 I guess). Build process ends with an error. This patch deletes the line. Signed-off-by: Robin Sheat Signed-off-by: Tomas Cohen Arazi http://bugs.koha-community.org/show_bug.cgi?id=13771 --- debian/rules | 2 -- 1 file changed, 2 deletions(-) diff --git a/debian/rules b/debian/rules index 525cc0d..a86427c 100755 --- a/debian/rules +++ b/debian/rules @@ -24,8 +24,6 @@ override_dh_auto_install: $(TMP)/usr/share/koha/intranet/htdocs/intranet-tmpl/lib/tiny_mce ln -s /usr/share/tinymce/www \ $(TMP)/usr/share/koha/intranet/htdocs/intranet-tmpl/lib/tiny_mce - rm -r \ - $(TMP)/usr/share/koha/opac/htdocs/opac-tmpl/lib/yui ln -s /usr/share/javascript/yui \ $(TMP)/usr/share/koha/opac/htdocs/opac-tmpl/lib/yui install -d $(TMP)/etc/apache2/sites-available -- 1.7.10.4