sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit 726973dcd581724dd52979612c52562f162102b0
parent 97b6c267ce742b79649bf7c649a80d0d3d87a2b7
Author: Connor Lane Smith <cls@lubutu.com>
Date:   Wed,  1 Jun 2011 21:31:22 +0100

glibc hates stripping
Diffstat:
MMakefile | 4++--
Mconfig.mk | 2+-
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -26,8 +26,8 @@ cat.o grep.o tail.o: text.h @$(CC) -c -o $@ $< $(CFLAGS) util.a: $(LIB) - @echo AR rc $@ - @$(AR) rc $@ $(LIB) + @echo AR -r $@ + @$(AR) -r -c $@ $(LIB) dist: clean @echo creating dist tarball diff --git a/config.mk b/config.mk @@ -6,7 +6,7 @@ VERSION = 0.0 LD = $(CC) CPPFLAGS = -D_POSIX_C_SOURCE=200112L CFLAGS = -Os -ansi -Wall -pedantic $(CPPFLAGS) -LDFLAGS = -s -static +LDFLAGS = -static #-s #CC = tcc #LD = $(CC)