Browse Source

Just use 'ls -l' since ls -sh lacks sufficient granularity

Eric Andersen 23 years ago
parent
commit
c48ae5155f
1 changed files with 1 additions and 2 deletions
  1. 1 2
      test/Rules.mak

+ 1 - 2
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; \