Skip to content

Commit 0cae61e

Browse files
committed
config.mk: clean out superfluous quotes in export statements
Signed-off-by: Øyvind Harboe <[email protected]>
1 parent ceff92c commit 0cae61e

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

flow/platforms/asap7/config.mk

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ ifeq ($(ASAP7_USELVT), 1)
165165

166166
export ABC_DRIVER_CELL = BUFx2_ASAP7_75t_L
167167

168-
export FILL_CELLS ?= "FILLERxp5_ASAP7_75t_L"
168+
export FILL_CELLS ?= FILLERxp5_ASAP7_75t_L
169169

170170
export TAP_CELL_NAME ?= TAPCELL_ASAP7_75t_L
171171

@@ -214,7 +214,7 @@ ifeq ($(ASAP7_USESLVT), 1)
214214

215215
export ABC_DRIVER_CELL = BUFx2_ASAP7_75t_SL
216216

217-
export FILL_CELLS ?= "FILLERxp5_ASAP7_75t_SL"
217+
export FILL_CELLS ?= FILLERxp5_ASAP7_75t_SL
218218

219219
export TAP_CELL_NAME ?= TAPCELL_ASAP7_75t_SL
220220

@@ -272,8 +272,8 @@ export DONT_USE_SC_LIB = $(OBJECTS_DIR)/lib/merged.lib
272272

273273
# IR drop estimation supply net name to be analyzed and supply voltage variable
274274
# For multiple nets: PWR_NETS_VOLTAGES = "VDD1 1.8 VDD2 1.2"
275-
export PWR_NETS_VOLTAGES ?= "VDD $(VOLTAGE)"
276-
export GND_NETS_VOLTAGES ?= "VSS 0.0"
275+
export PWR_NETS_VOLTAGES ?= VDD $(VOLTAGE)
276+
export GND_NETS_VOLTAGES ?= VSS 0.0
277277
export IR_DROP_LAYER ?= M1
278278

279279
# Allow empty GDS cell

flow/platforms/ihp-sg13g2/config.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ export RCX_RULES = $(PLATFORM_DIR)/rcx_patterns.rules
117117

118118
# IR drop estimation supply net name to be analyzed and supply voltage variable
119119
# For multiple nets: PWR_NETS_VOLTAGES = "VDD1 1.8 VDD2 1.2"
120-
export PWR_NETS_VOLTAGES ?= "VDD 1.2"
121-
export GND_NETS_VOLTAGES ?= "VSS 0.0"
120+
export PWR_NETS_VOLTAGES ?= VDD 1.2
121+
export GND_NETS_VOLTAGES ?= VSS 0.0
122122
export IR_DROP_LAYER ?= Metal1
123123

124124
# DRC Check

flow/platforms/nangate45/config.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,6 @@ export RCX_RULES = $(PLATFORM_DIR)/rcx_patterns.rules
103103

104104
# IR drop estimation supply net name to be analyzed and supply voltage variable
105105
# For multiple nets: PWR_NETS_VOLTAGES = "VDD1 1.8 VDD2 1.2"
106-
export PWR_NETS_VOLTAGES ?= "VDD 1.1"
107-
export GND_NETS_VOLTAGES ?= "VSS 0.0"
106+
export PWR_NETS_VOLTAGES ?= VDD 1.1
107+
export GND_NETS_VOLTAGES ?= VSS 0.0
108108
export IR_DROP_LAYER ?= metal1

flow/platforms/sky130hd/config.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ export RCX_RULES = $(PLATFORM_DIR)/rcx_patterns.rules
133133

134134
# IR drop estimation supply net name to be analyzed and supply voltage variable
135135
# For multiple nets: PWR_NETS_VOLTAGES = "VDD1 1.8 VDD2 1.2"
136-
export PWR_NETS_VOLTAGES ?= "VDD 1.8"
137-
export GND_NETS_VOLTAGES ?= "VSS 0.0"
136+
export PWR_NETS_VOLTAGES ?= VDD 1.8
137+
export GND_NETS_VOLTAGES ?= VSS 0.0
138138
export IR_DROP_LAYER ?= met1
139139

140140
# DRC Check

flow/platforms/sky130hs/config.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,6 @@ export RCX_RULES = $(PLATFORM_DIR)/rcx_patterns.rules
9494

9595
# IR drop estimation supply net name to be analyzed and supply voltage variable
9696
# For multiple nets: PWR_NETS_VOLTAGES = "VDD1 1.8 VDD2 1.2"
97-
export PWR_NETS_VOLTAGES ?= "VDD 1.8"
98-
export GND_NETS_VOLTAGES ?= "VSS 0.0"
97+
export PWR_NETS_VOLTAGES ?= VDD 1.8
98+
export GND_NETS_VOLTAGES ?= VSS 0.0
9999
export IR_DROP_LAYER ?= met1

0 commit comments

Comments
 (0)