diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-07-04 22:23:01 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-07-04 22:23:01 +0000 |
commit | 66b01e60d8d3b28bbaf226f2cb27c459d5fe09c0 (patch) | |
tree | 9a88808d08713eeebb4fa32a7032ff022a400eff /Rules.mak | |
parent | 712f14a84f8d506ef238c94a96bd98a7e561b153 (diff) |
Change symbol 'NOSTRIP' to 'DOSTRIP' since the double negatives
on i.e. NOSTRIP=n gets a bit confusing.
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -381,10 +381,10 @@ CFLAGS += -O0 -g3 else CFLAGS += $(OPTIMIZATION) $(XARCH_CFLAGS) endif -ifeq ($(NOSTRIP),y) -STRIPTOOL := true -Stripping_disabled -else +ifeq ($(DOSTRIP),y) LDFLAGS += -s +else +STRIPTOOL := true -Stripping_disabled endif ifeq ($(DOMULTI),y) |