Skip to content

Commit

Permalink
fixed the Makefile for packaging the installer bundle (#6761)
Browse files Browse the repository at this point in the history
  • Loading branch information
landreev committed Apr 15, 2020
1 parent 4007623 commit ed5a575
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/installer/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ JHOVE_CONFIG=${INSTALLER_ZIP_DIR}/jhove.conf
JHOVE_SCHEMA=${INSTALLER_ZIP_DIR}/jhoveConfig.xsd
SOLR_SCHEMA=${INSTALLER_ZIP_DIR}/schema.xml ${INSTALLER_ZIP_DIR}/schema_dv_mdb_fields.xml ${INSTALLER_ZIP_DIR}/schema_dv_mdb_copies.xml ${INSTALLER_ZIP_DIR}/updateSchemaMDB.sh
SOLR_CONFIG=${INSTALLER_ZIP_DIR}/solrconfig.xml
PYTHON_FILES=${INSTALLER_ZIP_DIR}/README_python.txt ${INSTALLER_ZIP_DIR}/installConfig.py ${INSTALLER_ZIP_DIR}/installUtils.py ${INSTALLER_ZIP_DIR}/install.py ${INSTALLER_ZIP_DIR}/installGlassfish.py ${INSTALLER_ZIP_DIR}/requirements.txt ${INSTALLER_ZIP_DIR}/default.config ${INSTALLER_ZIP_DIR}/interactive.config
PYTHON_FILES=${INSTALLER_ZIP_DIR}/README_python.txt ${INSTALLER_ZIP_DIR}/installConfig.py ${INSTALLER_ZIP_DIR}/installUtils.py ${INSTALLER_ZIP_DIR}/install.py ${INSTALLER_ZIP_DIR}/installAppServer.py ${INSTALLER_ZIP_DIR}/requirements.txt ${INSTALLER_ZIP_DIR}/default.config ${INSTALLER_ZIP_DIR}/interactive.config
INSTALL_SCRIPT=${INSTALLER_ZIP_DIR}/install

installer: dvinstall.zip
Expand Down Expand Up @@ -41,10 +41,10 @@ ${DISTRIBUTION_WAR_FILE}:
exit 1; \
fi

${GLASSFISH_SETUP_SCRIPT}: glassfish-setup.sh
${GLASSFISH_SETUP_SCRIPT}: as-setup.sh
@echo copying glassfish setup
mkdir -p ${INSTALLER_ZIP_DIR}
/bin/cp glassfish-setup.sh ${INSTALLER_ZIP_DIR}
/bin/cp as-setup.sh ${INSTALLER_ZIP_DIR}

${POSTGRES_DRIVERS}: pgdriver/postgresql-42.2.12.jar
@echo copying postgres driver
Expand Down Expand Up @@ -81,7 +81,7 @@ ${SOLR_CONFIG}: ../../conf/solr/7.7.2/solrconfig.xml
@mkdir -p ${INSTALLER_ZIP_DIR}
/bin/cp ../../conf/solr/7.7.2/solrconfig.xml ${INSTALLER_ZIP_DIR}

${PYTHON_FILES}: README_python.txt install.py installConfig.py installGlassfish.py installUtils.py requirements.txt default.config interactive.config
${PYTHON_FILES}: README_python.txt install.py installConfig.py installAppServer.py installUtils.py requirements.txt default.config interactive.config
@echo copying Python installer files
@mkdir -p ${INSTALLER_ZIP_DIR}
/bin/cp README_python.txt install.py installConfig.py installGlassfish.py installUtils.py requirements.txt default.config interactive.config ${INSTALLER_ZIP_DIR}
/bin/cp README_python.txt install.py installConfig.py installAppServer.py installUtils.py requirements.txt default.config interactive.config ${INSTALLER_ZIP_DIR}

0 comments on commit ed5a575

Please sign in to comment.