1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: fix install-data-hook
Do not run moon-buggy during install-data-hook to create scorefile,
it tries to create /root/.mbscore
Author: Christian T. Steigies <cts@debian.org>
Last-Update: 2017-12-29
Index: moon-buggy-1.0.51/Makefile.in
===================================================================
--- moon-buggy-1.0.51.orig/Makefile.in
+++ moon-buggy-1.0.51/Makefile.in
@@ -861,7 +861,7 @@ install-data-hook:
|| chmod 664 "$(DESTDIR)$(scoredir)/mbscore" ; } \
&& chmod 575 "$(DESTDIR)$(scoredir)" ; \
fi
- $(DESTDIR)$(bindir)/moon-buggy -c
+ #$(DESTDIR)$(bindir)/moon-buggy -c
uninstall-local:
rm -f $(DESTDIR)$(scoredir)/mbscore
|