summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorTim Edwards <tim@opencircuitdesign.com>2015-11-22 10:12:19 -0500
committerTim Edwards <tim@opencircuitdesign.com>2015-11-22 10:12:19 -0500
commit7c75bf87903a079205bb0b652941f6e92570a501 (patch)
tree303916ac051063b8123d5a55efe7d4b69fa0b3fa /scripts
parent728f5281684993e04193fa81477b5c023be4acf8 (diff)
Slight modification, as the unroute copy was being made before
the addspacers tool was run, leading to different file contents.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/placement.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/placement.sh b/scripts/placement.sh
index 9376b87..0322e92 100755
--- a/scripts/placement.sh
+++ b/scripts/placement.sh
@@ -304,7 +304,7 @@ if ($makedef == 1) then
exit 1
endif
- # Copy the .def file to a backup called "unroute"
+ # Copy the .def file to a backup called "unroute" (temporary)
cp ${rootname}.def ${rootname}_unroute.def
# If the user didn't specify a number of layers for routing as part of
@@ -485,6 +485,8 @@ if ($makedef == 1) then
$fillcell >>& ${synthlog}
if ( -f ${rootname}_filled.def ) then
mv ${rootname}_filled.def ${rootname}.def
+ # Copy the .def file to a backup called "unroute" (final)
+ cp ${rootname}.def ${rootname}_unroute.def
endif
endif
endif