diff options
author | Ahmed Irfan <irfan@ubuntu.(none)> | 2014-02-11 13:26:43 +0100 |
---|---|---|
committer | Ahmed Irfan <irfan@ubuntu.(none)> | 2014-02-11 13:26:43 +0100 |
commit | 1a2dc48c2ab8a809e345e1e62cc3f81fe7fd9485 (patch) | |
tree | 77ac37122e5107db08086aab9a319337bc8a6e73 /manual/APPNOTE_011_Design_Investigation | |
parent | e8f6b8f201c0ead8c17f9c9ae4de3e859e9e13ef (diff) | |
parent | d2fd45949d0984635c9f1253416281413c03d02b (diff) | |
download | yosys-1a2dc48c2ab8a809e345e1e62cc3f81fe7fd9485.tar.gz yosys-1a2dc48c2ab8a809e345e1e62cc3f81fe7fd9485.tar.bz2 yosys-1a2dc48c2ab8a809e345e1e62cc3f81fe7fd9485.zip |
Merge branch 'master' of https://github.com/cliffordwolf/yosys into btor
Diffstat (limited to 'manual/APPNOTE_011_Design_Investigation')
-rw-r--r-- | manual/APPNOTE_011_Design_Investigation/make.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/APPNOTE_011_Design_Investigation/make.sh b/manual/APPNOTE_011_Design_Investigation/make.sh index fa3ca70eb..3845dac6b 100644 --- a/manual/APPNOTE_011_Design_Investigation/make.sh +++ b/manual/APPNOTE_011_Design_Investigation/make.sh @@ -18,6 +18,6 @@ if false; then sed -i '/^label=/ d;' *.dot fi for dot_file in *.dot; do - pdf_file=${dot_file#.dot}.pdf - dot -Tpdf -o example_00.pdf example_00.dot + pdf_file=${dot_file%.dot}.pdf + dot -Tpdf -o $pdf_file $dot_file done |