From 1a8b4591f56a2e62a601a32508f3d49ae0c7f112 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Tue, 3 Jul 2018 20:17:20 +0200 Subject: [PATCH] added parameter to call --- ice40/family.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ice40/family.cmake b/ice40/family.cmake index 1ed2ecf3..532d7cc4 100644 --- a/ice40/family.cmake +++ b/ice40/family.cmake @@ -17,7 +17,7 @@ foreach (dev ${devices}) set(DEV_TXT_DB /usr/local/share/icebox/chipdb-${dev}.txt) set(DEV_CC_DB ${CMAKE_CURRENT_SOURCE_DIR}/ice40/chipdbs/chipdb-${dev}.cc) add_custom_command(OUTPUT ${DEV_CC_DB} - COMMAND python3 ${DB_PY} ${DEV_TXT_DB} > ${DEV_CC_DB}.new + COMMAND python3 ${DB_PY} -c ${DEV_TXT_DB} > ${DEV_CC_DB}.new COMMAND mv ${DEV_CC_DB}.new ${DEV_CC_DB} DEPENDS ${DEV_TXT_DB} ${DB_PY} )