tags 806604 + patch
thanks
> debian/rules override_dh_auto_build-indep
> make[1]: Entering directory '/<<PKGBUILDDIR>>'
> ln -sf /usr/share/javascript/jquery/jquery.js doc/web/html/jquery.js
> ln: failed to create symbolic link 'doc/web/html/jquery.js': No such file or
> directory
The fix for this is to move the symlink creation to debian/libaubio-doc.links,
this way dh_link will create the link when it has to be created.
Patch attached.
--- /dev/null
+++ b/debian/libaubio-doc.links
@@ -0,0 +1 @@
+/usr/share/javascript/jquery/jquery.js
/usr/share/doc/libaubio-doc/html/jquery.js
--- a/debian/rules
+++ b/debian/rules
@@ -36,7 +36,6 @@ override_dh_auto_build-arch:
cd python; python setup.py --verbose build; cd ..
override_dh_auto_build-indep:
- ln -sf /usr/share/javascript/jquery/jquery.js doc/web/html/jquery.js
override_dh_auto_install:
$(WAF_CMD) install $(WAF_OPTIONS)