From 1c41ad986b7bee6461e419216fe3be92945c7f95 Mon Sep 17 00:00:00 2001 From: donker <donker@astron.nl> Date: Tue, 12 Sep 2023 15:59:28 +0200 Subject: [PATCH] changed paths to other init files to absolute paths --- init_hdl.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init_hdl.sh b/init_hdl.sh index 7f9db60f26..cbd78c5584 100644 --- a/init_hdl.sh +++ b/init_hdl.sh @@ -95,10 +95,10 @@ for altera_dir in ${ALTERA_DIR}/*; do done # source also radiohdl, args and vhdl_style tools -. ../radiohdl/init_radiohdl.sh +. ${GIT}/radiohdl/init_radiohdl.sh if [[ -d "${HDL_WORK}/../args" ]]; then - . ../args/init_args.sh + . ${GIT}/args/init_args.sh fi if [[ -d "${HDL_WORK}/../vhdlstyle" ]]; then - . ../vhdlstyle/init_vhdl_style.sh + . ${GIT}/vhdlstyle/init_vhdl_style.sh fi -- GitLab