From 3df9a6fc4419887ec530a4353f5e00c85cbe3cbd Mon Sep 17 00:00:00 2001 From: Tobias Leich Date: Mon, 23 Mar 2015 21:06:30 +0100 Subject: install panda's state and projects list We do that so one can query what is installed by doing: panda --installed list This also prevents panda to refetch and rebuild already installed stuff, which can even break because the module in the ecosystem might already have changed, triggered by a rakudo compiler change. --- tools/build/Makefile.in | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tools/build/Makefile.in') diff --git a/tools/build/Makefile.in b/tools/build/Makefile.in index 4b6759d..0dd1735 100644 --- a/tools/build/Makefile.in +++ b/tools/build/Makefile.in @@ -61,6 +61,9 @@ modules-install-j: @echo "== Installing binaries for JVM" $(PERL) tools/build/bin-install.pl $(PERL6_J_INSTALL) $(DESTDIR)$(JVM_BIN_DIR) j modules/ufo/bin/ufo modules/panda/bin/panda modules/doc/bin/p6doc $(PERL) tools/build/bin-install.pl $(PERL6_J_INSTALL) $(DESTDIR)$(JVM_BIN_DIR) j modules/ufo/bin/ufo modules/panda/bin/panda modules/doc/bin/p6doc-index + $(MKPATH) $(DESTDIR)$(PERL6_J_LANG_DIR)/site/panda/ + $(CP) install/languages/perl6/site/panda/projects.json $(DESTDIR)$(PERL6_J_LANG_DIR)/site/panda/ + $(CP) install/languages/perl6/site/panda/state $(DESTDIR)$(PERL6_J_LANG_DIR)/site/panda/ modules-install-m: @echo "== Installing modules for MoarVM" @@ -68,6 +71,9 @@ modules-install-m: @echo "== Installing binaries for MoarVM" $(PERL) tools/build/bin-install.pl $(PERL6_M_INSTALL) $(DESTDIR)$(MOAR_BIN_DIR) m modules/ufo/bin/ufo modules/panda/bin/panda modules/doc/bin/p6doc $(PERL) tools/build/bin-install.pl $(PERL6_M_INSTALL) $(DESTDIR)$(MOAR_BIN_DIR) m modules/ufo/bin/ufo modules/panda/bin/panda modules/doc/bin/p6doc-index + $(MKPATH) $(DESTDIR)$(PERL6_M_LANG_DIR)/site/panda/ + $(CP) install/languages/perl6/site/panda/projects.json $(DESTDIR)$(PERL6_M_LANG_DIR)/site/panda/ + $(CP) install/languages/perl6/site/panda/state $(DESTDIR)$(PERL6_M_LANG_DIR)/site/panda/ modules-test: @backend_modules_test@ verbose-modules-test: @backend_modules_test@ -- cgit v1.1