aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
authorLinus Torvalds <torvalds@tove.osdl.org>2004-08-25 12:39:04 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 21:02:53 -0700
commit3f880e048e6a7d4d483abbb6f9a5d2d93ca250ce (patch)
tree53a917ae4bee1ba6ad3fdf54b8b7182eeebf21f8 /Makefile
parentcb3431cf6ba14b6e216f4892ccd7bc2a75fcbe0e (diff)
downloadsparse-dev-3f880e048e6a7d4d483abbb6f9a5d2d93ca250ce.tar.gz
Don't strip the binary when installing.
When we don't have bugs all the time, we can strip it again, but for now it just makes debugging harder.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0bc98b1a..8254c045 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ all: $(PROGRAMS)
# "The better to keep you on your toes, my dear".
#
install: check
- if test $< -nt $(PREFIX)/bin/sparse ; then install -sv $< $(PREFIX)/bin/sparse ; fi
+ if test $< -nt $(PREFIX)/bin/sparse ; then install -v $< $(PREFIX)/bin/sparse ; fi
test-lexing: test-lexing.o $(LIB_FILE)
gcc $(LDFLAGS) -o $@ $< $(LIBS)