summaryrefslogtreecommitdiffstats
path: root/programs/Makefile
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-12-16 21:03:16 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-12-16 21:03:16 (GMT)
commit8a9fb8cf3229c9a704c982667c63ac440b8487ba (patch)
treea01e24ab3eb37dde02bb95e73166739faf59659a /programs/Makefile
parent95cc6cef6444b202a93ba414b7a9996eb2c72ca3 (diff)
downloadlz4-8a9fb8cf3229c9a704c982667c63ac440b8487ba.zip
lz4-8a9fb8cf3229c9a704c982667c63ac440b8487ba.tar.gz
lz4-8a9fb8cf3229c9a704c982667c63ac440b8487ba.tar.bz2
Fixed : older compiler don't like nameless unions, reported by Cheyi Lin
Diffstat (limited to 'programs/Makefile')
-rw-r--r--programs/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/programs/Makefile b/programs/Makefile
index 67218c1..02052ea 100644
--- a/programs/Makefile
+++ b/programs/Makefile
@@ -146,8 +146,8 @@ test-lz4: lz4 datagen
./datagen -g256MB | ./lz4 -vqB4D | ./lz4 -vdq > $(VOID)
./datagen -g6GB | ./lz4 -vqB5D | ./lz4 -vdq > $(VOID)
# test frame concatenation with null-length frame
- echo -n > empty.test
- echo hi > nonempty.test
+ @echo -n > empty.test
+ @echo hi > nonempty.test
cat nonempty.test empty.test nonempty.test > orig.test
@./lz4 -zq empty.test > empty.lz4.test
@./lz4 -zq nonempty.test > nonempty.lz4.test
@@ -160,7 +160,7 @@ test-lz4: lz4 datagen
test-lz4c: lz4c datagen
- ./datagen -g256MB | ./lz4c -l -v -B4D | ./lz4c -vdq > $(VOID)
+ ./datagen -g256MB | ./lz4c -l -v | ./lz4c -vdq > $(VOID)
test-lz4c32: lz4 lz4c32 lz4 datagen
./datagen -g16KB | ./lz4c32 -9 | ./lz4c32 -vdq > $(VOID)