From 38afe2957f8ca8c4013f5c33a6d1aec749fbd581 Mon Sep 17 00:00:00 2001 From: Shreesha Srinath Date: Fri, 18 Aug 2017 11:34:35 -0700 Subject: [PATCH] Fixing typos in the tcl script --- xilinx/common/tcl/vivado.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xilinx/common/tcl/vivado.tcl b/xilinx/common/tcl/vivado.tcl index 7c4962e..afbd5f0 100644 --- a/xilinx/common/tcl/vivado.tcl +++ b/xilinx/common/tcl/vivado.tcl @@ -5,7 +5,7 @@ source [file join $scriptdir "synth.tcl"] # Pre-implementation debug if {[info exists ::env(PRE_IMPL_DEBUG_TCL)]} { - source [file join $scriptdir ::env(PRE_IMPL_DEBUG_TCL)] + source [file join $scriptdir $::env(PRE_IMPL_DEBUG_TCL)] } # Post synthesis optimization @@ -22,7 +22,7 @@ source [file join $scriptdir "bitstream.tcl"] # Post-implementation debug if {[info exists ::env(POST_IMPL_DEBUG_TCL)]} { - source [file join $scriptdir ::env(POST_IMPL_DEBUG_TCL)] + source [file join $scriptdir $::env(POST_IMPL_DEBUG_TCL)] } # Create reports for the current implementation