From c51a331d720c7e2fb5252c6cf4c1ddd4b4b8a8a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Mon, 15 Jun 2009 22:04:11 +0300 Subject: Allow overriding 'strip' executable to use in debug builds. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d149cfb..d4ba55c 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,7 @@ #DEBUG=1 #BENCH=1 +STRIP=strip HAVE_IMAGEMAGICK=1 #HAVE_IMLIB2=1 @@ -156,7 +157,7 @@ libvdr-$(PLUGIN).so: $(OBJS) $(CXX) $(CXXFLAGS) -shared $(OBJS) $(LIBS) -o $@ @cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION) ifndef DEBUG - strip $(LIBDIR)/$@.$(APIVERSION) + $(STRIP) $(LIBDIR)/$@.$(APIVERSION) endif dist: clean -- cgit v1.2.3