Corrected the addition to Makefile.in from a recent commit, as the target argument to preproc.py must be a file, not a directory (although accepting a directory argument a la the "cp" command seems like a reasonable behavior to add).
diff --git a/Makefile.in b/Makefile.in index 245bb3a..37de817 100644 --- a/Makefile.in +++ b/Makefile.in
@@ -104,7 +104,7 @@ $(datadir)/pdk/$$file ;\ done ;\ mv $(datadir)/pdk/runtime/* $(datadir)/pdk/scripts ;\ - ${CPP} -DPREFIX=$(datadir) common/cdl2spi.py $(datadir)/pdk/scripts ;\ + ${CPP} -DPREFIX=$(datadir) common/cdl2spi.py $(datadir)/pdk/scripts/cdl2spi.py ;\ rm -r -f $(datadir)/pdk/runtime ;\ echo "Common install: Done." ;\ else \
diff --git a/VERSION b/VERSION index b162126..556d562 100644 --- a/VERSION +++ b/VERSION
@@ -1 +1 @@ -1.0.220 +1.0.221