diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-04-27 05:46:40 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-04-27 05:46:40 +0000 |
commit | c48ae5155fd2222dd84572a24d77c4d01c81c32a (patch) | |
tree | a6af00aac9081e73e46f5ae92fedfd387874fc6c | |
parent | cf4790cfc6681d06e4628ce835287ae739fa605f (diff) |
Just use 'ls -l' since ls -sh lacks sufficient granularity
-rw-r--r-- | test/Rules.mak | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Rules.mak b/test/Rules.mak index a0ac3cef7..9356b40f4 100644 --- a/test/Rules.mak +++ b/test/Rules.mak @@ -20,8 +20,7 @@ STRIPTOOL=strip # Check if 'ls -sh' works or not -LSFLAGS = $(shell if ls -sh >/dev/null 2>&1; \ - then echo "-sh"; else echo "-s" ; fi) +LSFLAGS = -l # use '-Os' optimization if available, else use -O2 OPTIMIZATION = $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \ |