Same as fix for Makefile

This commit is contained in:
Sagar Karandikar
2023-02-15 18:25:22 -08:00
committed by GitHub
parent 0c4cfc8742
commit 86abfd1e73

View File

@@ -30,7 +30,7 @@ $(POWER_RTL_CONF): $(VLSI_RTL)
echo "power.inputs:" >> $@
echo " level: rtl" >> $@
echo " input_files:" >> $@
for x in $(shell cat $(VLSI_RTL)); do \
for x in $$(cat $(VLSI_RTL)); do \
echo ' - "'$$x'"' >> $@; \
done