diff options
-rwxr-xr-x | bootstrap | 11 | ||||
-rw-r--r-- | contrib/Makefile.am | 9 |
2 files changed, 8 insertions, 12 deletions
@@ -32,12 +32,9 @@ fi echo "$0: Running autoreconf" autoreconf -if -#echo "Building single-page app (from external Git repository)" -#cd contrib/merchant-backoffice -#./bootstrap -#./configure -#make build-single -#cp packages/frontend/single/index.html ../spa.html -#cd ../.. +echo "Importing single-page app (from external Git repository)" +cd contrib/merchant-backoffice +cp spa.html .. +cd ../.. exit 0 diff --git a/contrib/Makefile.am b/contrib/Makefile.am index ffdcfd12..4344aac7 100644 --- a/contrib/Makefile.am +++ b/contrib/Makefile.am @@ -14,8 +14,7 @@ dist_staticpkgdata_DATA = \ pure-min.css -# spa.html is the single-page-app generated from the merchant-backoffice.git, -# 'make build-single', during 'bootstrap!' -# FIXME: temporarily disabled. -# dist_spapkgdata_DATA = \ -# spa.html +# spa.html is the single-page-app imported from the merchant-backoffice.git +# prebuilt branch. +dist_spapkgdata_DATA = \ + spa.html |