Skip to content
Snippets Groups Projects
Commit 788e3f51 authored by Ulrich Schwickerath's avatar Ulrich Schwickerath
Browse files

--amend

parent 5769cada
No related branches found
No related tags found
1 merge request!12version CERNLIB
......@@ -78,8 +78,8 @@ cernlib: profiles logs
$(eval export CERN=$(shell set -x;DELPHI_INSTALL_DIR=$(DELPHI_INSTALL_DIR) source ./delphi.sh ; echo ${CERN}))
echo "starting cernlib"
mkdir -p $(CERN)
./make_cernlib $(CERN) $(CERNVER) $(LEGACY) 0 > logs/make_cernlib-imake.log 2>&1 || ( cat logs/make_cernlib-imake.log; /bin/false )
./make_cernlib $(CERN) $(CERNVER) $(LEGACY) 1 > logs/make_cernlib-cmake.log 2>&1 || ( cat logs/make_cernlib-cmake.log; /bin/false )
./make_cernlib $(CERN) $(CERNVER) 0 $(LEGACY) > logs/make_cernlib-imake.log 2>&1 || ( cat logs/make_cernlib-imake.log; /bin/false )
./make_cernlib $(CERN) $(CERNVER) 1 $(LEGACY) > logs/make_cernlib-cmake.log 2>&1 || ( cat logs/make_cernlib-cmake.log; /bin/false )
dstana_pre: profiles setup logs
./make_dstana $(NEW) $(DELPHI_SWCD) $(DELPHI_INSTALL_DIR) > logs/make_dstana_$(NEW).log 2>&1 || ( cat logs/make_dstana_$(NEW).log; /bin/false )
......
......@@ -2,8 +2,26 @@
rc=0;
if [[ ! -z "${GROUP_DIR}" ]]; then
cd delphi
epawx11=2
# check Motif CERN apps
fpawx11=`find . -name pawX11 | wc -l`
if [ "x$epawx11" = "x$fpawx11" ]; then
echo "pawX11 has been correctly created"
else
echo "pawX11 is missing."
rc=2
fi
epawpp=2
# check Motif CERN apps
fpawpp=`find . -name paw++ | wc -l`
if [ "x$epawpp" = "x$fpawpp" ]; then
echo "paw++ has been correctly created"
else
echo "paw++ is missing."
rc=2
fi
# count testing libraries
elibs=442
elibs=471
flibs=`find . -name \*.a | wc -l`
if [ "x$elibs" = "x$flibs" ]; then
echo "All expected $elibs libraries have been created"
......
......@@ -2,8 +2,26 @@
rc=0;
if [[ ! -z "${GROUP_DIR}" ]]; then
cd $GROUP_DIR
epawx11=2
# check Motif CERN apps
fpawx11=`find . -name pawX11 | wc -l`
if [ "x$epawx11" = "x$fpawx11" ]; then
echo "pawX11 has been correctly created"
else
echo "pawX11 is missing."
rc=2
fi
epawpp=2
# check Motif CERN apps
fpawpp=`find . -name paw++ | wc -l`
if [ "x$epawpp" = "x$fpawpp" ]; then
echo "paw++ has been correctly created"
else
echo "paw++ is missing."
rc=2
fi
# count testing libraries
elibs=436
elibs=465
flibs=`find . -name \*.a | wc -l`
if [ "x$elibs" = "x$flibs" ]; then
echo "All expected $elibs libraries have been created"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment