summaryrefslogtreecommitdiff
path: root/backend/dep
diff options
context:
space:
mode:
authorIkiWiki <ikiwiki.info>2020-03-02 15:52:26 -0500
committerIkiWiki <ikiwiki.info>2020-03-02 15:52:26 -0500
commit84afe83be371f847b9e5776e507efa9351823b45 (patch)
tree13bfe7adb1c7a7802d3bd8f1e47c1a84b7f6c37e /backend/dep
parentb878e07e73437252a4e7b6c864e44b104dfba434 (diff)
downloadstandingwithresilience-84afe83be371f847b9e5776e507efa9351823b45.tar.gz
standingwithresilience-84afe83be371f847b9e5776e507efa9351823b45.zip
finally got ikiwiki compiled without root
Diffstat (limited to 'backend/dep')
-rwxr-xr-xbackend/dep/build_ikiwiki.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/dep/build_ikiwiki.sh b/backend/dep/build_ikiwiki.sh
index 55698a3..484613a 100755
--- a/backend/dep/build_ikiwiki.sh
+++ b/backend/dep/build_ikiwiki.sh
@@ -3,8 +3,8 @@
SCRIPTDIR="$( cd "$( dirname "$0" )" >/dev/null 2>&1 && pwd )"
cd "$SCRIPTDIR"/ikiwiki &&
-{ PERL5LIB=`pwd` PERL_MM_USE_DEFAULT=1 perl -MCPAN -e 'CPAN::Shell->notest("install", "Bundle::IkiWiki")'; } &&
-#PERL5LIB=`pwd` PERL_MM_USE_DEFAULT=1 perl -MCPAN -e 'CPAN::Shell->notest("install", "Bundle::IkiWiki::Extras")' &&
+PERL5LIB="$(pwd):$(pwd)/cpan" PERL_MM_USE_DEFAULT=1 perl -MCPAN -MCPAN::MyConfig -e 'CPAN::Shell->notest("install", "Bundle::IkiWiki")' &&
+#PERL5LIB="$(pwd):$(pwd)/cpan" PERL_MM_USE_DEFAULT=1 perl -MCPAN -MCPAN::MyConfig -e 'CPAN::Shell->notest("install", "Bundle::IkiWiki::Extras")' &&
perl Makefile.PL PREFIX= INSTALL_BASE= &&
make &&