Skip to content

Commit c1c311d

Browse files
committed
makefile: fix make issue gaffe in run* files
expand scripts dir when running, not generating these files Signed-off-by: Øyvind Harboe <[email protected]>
1 parent 774246e commit c1c311d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flow/util/makeIssue.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ cat > ${RUN_ME_SCRIPT} <<EOF
6969
#!/usr/bin/env bash
7070
source ${VARS_BASENAME}.sh
7171
if [[ ! -z \${GDB+x} ]]; then
72-
gdb --args openroad -no_init ${SCRIPTS_DIR}/$1.tcl
72+
gdb --args openroad -no_init \${SCRIPTS_DIR}/$1.tcl
7373
else
74-
openroad -no_init ${SCRIPTS_DIR}/$1.tcl
74+
openroad -no_init \${SCRIPTS_DIR}/$1.tcl
7575
fi
7676
EOF
7777
chmod +x ${RUN_ME_SCRIPT}

0 commit comments

Comments
 (0)