From 231a07268d5f279a7bea76645a03cf045ac9730e Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sat, 25 Apr 2020 08:01:03 +0000 Subject: [PATCH] git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@13566 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- tools/eclipse/makelaunch/makelaunch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/eclipse/makelaunch/makelaunch.sh b/tools/eclipse/makelaunch/makelaunch.sh index 499be215f..88d5e2530 100644 --- a/tools/eclipse/makelaunch/makelaunch.sh +++ b/tools/eclipse/makelaunch/makelaunch.sh @@ -11,8 +11,8 @@ else LAUNCHNAME1="$3 ($ELFNAME)(OpenOCD, Flash and Run)" LAUNCHNAME2="$3 ($ELFNAME)(OpenOCD, Just Run)" mkdir -p $1/$DEBUGDIR - cat ./arm_flash-and-run.launch | sed -r "s|EEEEEEEE|$2|g" | sed -r "s|PPPPPPPP|$3|g" > "$1/$DEBUGDIR/$LAUNCHNAME1.launch" - cat ./arm_just-run.launch | sed -r "s|EEEEEEEE|$2|g" | sed -r "s|PPPPPPPP|$3|g" > "$1/$DEBUGDIR/$LAUNCHNAME2.launch" + cat ./arm_flash-and-run.launch.template | sed -r "s|EEEEEEEE|$2|g" | sed -r "s|PPPPPPPP|$3|g" > "$1/$DEBUGDIR/$LAUNCHNAME1.launch" + cat ./arm_just-run.launch.template | sed -r "s|EEEEEEEE|$2|g" | sed -r "s|PPPPPPPP|$3|g" > "$1/$DEBUGDIR/$LAUNCHNAME2.launch" echo echo "Done" fi