From 1d10f387f7a8cdbc379e737e1104bef3f3e8ed4d Mon Sep 17 00:00:00 2001 From: Ulrich Schwickerath <Ulrich.Schwickerath@cern.ch> Date: Fri, 25 Feb 2022 15:52:41 +0100 Subject: [PATCH] bug fix --- install/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/install/Makefile b/install/Makefile index c840e8aa..7d9aa83e 100644 --- a/install/Makefile +++ b/install/Makefile @@ -10,7 +10,7 @@ PRO = 161018 FFLAGS = $(LEGACY) CFLAGS = $(LEGACY) LDFLAGS = $(LEGACY) -L\/usr\/lib\/gcc\/i686-linux-gnu\/5 -ADDCOMP = $(LEGACY) -no-pie -allow-invalid-boz -g -O0 -finit-local-zero -fno-second-underscore -fno-backslash -fno-automatic -fno-f2c -std=legacy -fno-align-commons -Wall +ADDCOMP = $(LEGACY) -no-pie -fallow-invalid-boz -g -O0 -finit-local-zero -fno-second-underscore -fno-backslash -fno-automatic -fno-f2c -std=legacy -fno-align-commons -Wall PLINAM = Linux DATETAG = `date +%Y%m%d` DELPHI_SWCD = /tmp/swcd @@ -35,7 +35,9 @@ endif cat delphi.sh.template | sed -e 's/__PRO__/${PRO}/'| sed -e 's/__FFLAGS__/${FFLAGS}/'| sed -e 's/__CFLAGS__/${CFLAGS}/'| sed -e 's/__LDFLAGS__/${LDFLAGS}/'| sed -e 's/__ADDCOMP__/${ADDCOMP}/'| sed -e 's/__PLINAM__/${PLINAM}/' > delphi.sh setup: profiles + echo 'Creating profiles' mkdir -p $(DELPHI_INSTALL_DIR) + echo "Created install directory " cp -p ../runtime/setup.sh $(DELPHI_INSTALL_DIR) cp -p ../runtime/setup.csh $(DELPHI_INSTALL_DIR) chmod 0755 $(DELPHI_INSTALL_DIR)/setup.sh @@ -44,6 +46,7 @@ setup: profiles cp -p ../runtime/unset.csh $(DELPHI_INSTALL_DIR) chmod 0755 $(DELPHI_INSTALL_DIR)/unset.sh chmod 0755 $(DELPHI_INSTALL_DIR)/unset.csh + echo "copied setup scripts" # install basic runtime environment cp -rp ../runtime/pdl $(DELPHI_INSTALL_DIR) -- GitLab