]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Removes strip from make install
authorOndrej Zajicek <santiago@crfreenet.org>
Tue, 13 Aug 2013 21:04:06 +0000 (23:04 +0200)
committerOndrej Zajicek <santiago@crfreenet.org>
Tue, 13 Aug 2013 21:04:06 +0000 (23:04 +0200)
Thanks to Alexander V. Chernikov for the patch.

tools/Makefile.in

index feb83b9f3bc2ad622ab066008855080ec5a0b047..062ba916170d073a6aad1d0ecdedeefd7892b4b1 100644 (file)
@@ -69,10 +69,10 @@ tags:
 
 install: all
        $(INSTALL) -d $(DESTDIR)/$(sbindir) $(DESTDIR)/$(sysconfdir) $(DESTDIR)/@runtimedir@
-       $(INSTALL_PROGRAM) -s $(exedir)/bird $(DESTDIR)/$(sbindir)/bird@SUFFIX@
-       $(INSTALL_PROGRAM) -s $(exedir)/birdcl $(DESTDIR)/$(sbindir)/birdcl@SUFFIX@
+       $(INSTALL_PROGRAM) $(exedir)/bird $(DESTDIR)/$(sbindir)/bird@SUFFIX@
+       $(INSTALL_PROGRAM) $(exedir)/birdcl $(DESTDIR)/$(sbindir)/birdcl@SUFFIX@
        if test -n "@CLIENT@" ; then                                                            \
-               $(INSTALL_PROGRAM) -s $(exedir)/birdc $(DESTDIR)/$(sbindir)/birdc@SUFFIX@ ;     \
+               $(INSTALL_PROGRAM) $(exedir)/birdc $(DESTDIR)/$(sbindir)/birdc@SUFFIX@ ;        \
        fi
        if ! test -f $(DESTDIR)/@CONFIG_FILE@ ; then                                            \
                $(INSTALL_DATA) $(srcdir)/doc/bird.conf.example $(DESTDIR)/@CONFIG_FILE@ ;      \