now export LD_LIBRARY_PATH to the targets environment
This commit is contained in:
parent
654632125b
commit
b58db9c65f
|
@ -20,8 +20,8 @@
|
||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# Author : $Author: fgerlits $
|
# Author : $Author: maroy $
|
||||||
# Version : $Revision: 1.26 $
|
# Version : $Revision: 1.27 $
|
||||||
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/etc/Makefile.in,v $
|
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/etc/Makefile.in,v $
|
||||||
#
|
#
|
||||||
# @configure_input@
|
# @configure_input@
|
||||||
|
@ -112,6 +112,8 @@ TEST_RUNNER = ${TMP_DIR}/testRunner
|
||||||
|
|
||||||
DOXYGEN_CONFIG = ${ETC_DIR}/doxygen.config
|
DOXYGEN_CONFIG = ${ETC_DIR}/doxygen.config
|
||||||
|
|
||||||
|
export LD_LIBRARY_PATH=${USR_LIB_DIR}
|
||||||
|
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
# Configuration parameters
|
# Configuration parameters
|
||||||
|
@ -252,25 +254,27 @@ distclean: clean docclean
|
||||||
check: all ${TEST_RUNNER} storage_server_init start run_tests stop
|
check: all ${TEST_RUNNER} storage_server_init start run_tests stop
|
||||||
|
|
||||||
run_tests: ${TEST_RUNNER}
|
run_tests: ${TEST_RUNNER}
|
||||||
LD_LIBRARY_PATH=${USR_LIB_DIR} ${TEST_RUNNER} \
|
${TEST_RUNNER} -o ${TEST_RESULTS} -s ${TEST_XSLT}
|
||||||
-o ${TEST_RESULTS} -s ${TEST_XSLT}
|
|
||||||
|
|
||||||
install: ${SCHEDULER_EXE}
|
install: ${SCHEDULER_EXE}
|
||||||
LD_LIBRARY_PATH=${USR_LIB_DIR} ${SCHEDULER_EXE} -c ${SCHEDULER_CFG} install
|
${SCHEDULER_EXE} -c ${SCHEDULER_CFG} install
|
||||||
|
|
||||||
start: ${SCHEDULER_EXE}
|
start: ${SCHEDULER_EXE}
|
||||||
LD_LIBRARY_PATH=${USR_LIB_DIR} ${SCHEDULER_EXE} -c ${SCHEDULER_CFG} start
|
${SCHEDULER_EXE} -c ${SCHEDULER_CFG} start
|
||||||
sleep 2
|
sleep 2
|
||||||
|
|
||||||
stop: ${SCHEDULER_EXE}
|
stop: ${SCHEDULER_EXE}
|
||||||
LD_LIBRARY_PATH=${USR_LIB_DIR} ${SCHEDULER_EXE} -c ${SCHEDULER_CFG} stop
|
${SCHEDULER_EXE} -c ${SCHEDULER_CFG} stop
|
||||||
|
|
||||||
status: ${SCHEDULER_EXE}
|
status: ${SCHEDULER_EXE}
|
||||||
LD_LIBRARY_PATH=${USR_LIB_DIR} ${SCHEDULER_EXE} -c ${SCHEDULER_CFG} status
|
${SCHEDULER_EXE} -c ${SCHEDULER_CFG} status
|
||||||
|
|
||||||
uninstall: ${SCHEDULER_EXE}
|
uninstall: ${SCHEDULER_EXE}
|
||||||
LD_LIBRARY_PATH=${USR_LIB_DIR} ${SCHEDULER_EXE} -c ${SCHEDULER_CFG} \
|
${SCHEDULER_EXE} -c ${SCHEDULER_CFG} uninstall
|
||||||
uninstall
|
|
||||||
|
run: ${SCHEDULER_EXE}
|
||||||
|
${SCHEDULER_EXE} -c ${SCHEDULER_CFG} --debug start
|
||||||
|
sleep 2
|
||||||
|
|
||||||
storage_server_init:
|
storage_server_init:
|
||||||
# ${MAKE} -C ${STORAGE_SERVER_DIR}
|
# ${MAKE} -C ${STORAGE_SERVER_DIR}
|
||||||
|
|
Loading…
Reference in New Issue