diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-03-18 07:32:33 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-03-18 07:32:33 +0100 |
commit | 020a35d11e26e5487ae3568ac78df28c14019375 (patch) | |
tree | 161eb60f3165149eef22ce57024338c022a3f9b7 /passes | |
parent | 52914c2e68ecb2d8bd2a650a431f921354cd444c (diff) | |
download | yosys-020a35d11e26e5487ae3568ac78df28c14019375.tar.gz yosys-020a35d11e26e5487ae3568ac78df28c14019375.tar.bz2 yosys-020a35d11e26e5487ae3568ac78df28c14019375.zip |
Removed date from auto-generated passes/techmap/stdcells.inc
Diffstat (limited to 'passes')
-rw-r--r-- | passes/techmap/Makefile.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/passes/techmap/Makefile.inc b/passes/techmap/Makefile.inc index 2e90215e1..970236259 100644 --- a/passes/techmap/Makefile.inc +++ b/passes/techmap/Makefile.inc @@ -3,8 +3,7 @@ GENFILES += passes/techmap/stdcells.inc OBJS += passes/techmap/techmap.o passes/techmap/stdcells.inc: techlibs/stdcells.v - echo -n "// autogenerated from $< on " > $@.new - LANG=C date >> $@.new + echo "// autogenerated from $<" > $@.new od -v -td1 -w1 $< | awk 'BEGIN { print "static char stdcells_code[] = {"; } $$2 != "" { print $$2 ","; } \ END { print 0 "};"; }' | fmt >> $@.new mv $@.new $@ |