diff options
author | David Timber <dxdt@dev.snart.me> | 2024-11-02 22:33:52 +0100 |
---|---|---|
committer | David Timber <dxdt@dev.snart.me> | 2024-11-02 22:33:52 +0100 |
commit | 0bf2a61aed938df9a2dd5188818255c977d4a77b (patch) | |
tree | 170277d98155b9ff5c34743212edac9f0889d846 /writeups/multiprecision/Makefile | |
parent | 66f7f30bd0e598864d782117c1da2137a524eb2e (diff) |
writeups/multiprecision: fix print error ...
- Remove '--suppress-common-lines' option when producing diff
Diffstat (limited to 'writeups/multiprecision/Makefile')
-rw-r--r-- | writeups/multiprecision/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/writeups/multiprecision/Makefile b/writeups/multiprecision/Makefile index cdb10d8..cd266c6 100644 --- a/writeups/multiprecision/Makefile +++ b/writeups/multiprecision/Makefile @@ -16,7 +16,7 @@ b: fibo.mjs mv b.tmp b c: fibo.mjs - ./fibo.mjs 0 | cat -n > c.tmp + ./fibo.mjs 2 | cat -n > c.tmp mv c.tmp c d: fibo-crude-mp @@ -32,11 +32,11 @@ test: a b d diff b d sxsdiff-a-c: a c - ! diff --suppress-common-lines -y a c > sxsdiff-a-c.tmp + ! diff -y a c > sxsdiff-a-c.tmp mv sxsdiff-a-c.tmp sxsdiff-a-c sxsdiff-c-e: c e - ! diff --suppress-common-lines -y c e > sxsdiff-c-e.tmp + ! diff -y c e > sxsdiff-c-e.tmp mv sxsdiff-c-e.tmp sxsdiff-c-e doplot: a c e |