Line 0
Link Here
|
|
|
1 |
--- examples/Makefile.in.orig 2014-01-10 21:04:41 UTC |
2 |
+++ examples/Makefile.in |
3 |
@@ -169,7 +169,7 @@ install: $(PROGRAMS) $(SSL_PROGRAMS) |
4 |
$(INSTALL) -d -m 755 $(DESTDIR)$(mandir) |
5 |
$(INSTALL) -d -m 755 $(DESTDIR)$(mandir)/man1 |
6 |
for i in $(PROGRAMS) $(SSL_PROGRAMS); do \ |
7 |
- $(libtool) --tag=CC --mode=install ${INSTALL} -c $$i $(DESTDIR)$(bindir) ; \ |
8 |
+ $(libtool) --tag=CC --mode=install ${INSTALL} -s -c $$i $(DESTDIR)$(bindir) ; \ |
9 |
if test -f $$i.1 ; \ |
10 |
then $(INSTALL) -c -m 644 $$i.1 $(DESTDIR)$(mandir)/man1/$$i.1 ; \ |
11 |
else $(INSTALL) -c -m 644 $(srcdir)/$$i.1 $(DESTDIR)$(mandir)/man1/$$i.1 ; \ |
12 |
@@ -182,14 +182,14 @@ install-static: all-static |
13 |
$(INSTALL) -d -m 755 $(DESTDIR)$(mandir) |
14 |
$(INSTALL) -d -m 755 $(DESTDIR)$(mandir)/man1 |
15 |
for i in $(PROGRAMS); do \ |
16 |
- $(libtool) --tag=CC --mode=install ${INSTALL} -c $$i.stc $(DESTDIR)$(bindir) ; \ |
17 |
+ $(libtool) --tag=CC --mode=install ${INSTALL} -s -c $$i.stc $(DESTDIR)$(bindir) ; \ |
18 |
if test -f $$i.1 ; \ |
19 |
then $(INSTALL) -c -m 644 $$i.1 $(DESTDIR)$(mandir)/man1/$$i.1 ; \ |
20 |
else $(INSTALL) -c -m 644 $(srcdir)/$$i.1 $(DESTDIR)$(mandir)/man1/$$i.1 ; \ |
21 |
fi ; \ |
22 |
done |
23 |
for i in $(SSL_PROGRAMS); do \ |
24 |
- $(libtool) --tag=CC --mode=install ${INSTALL} -c $$i.stc-ssl $(DESTDIR)$(bindir) ; \ |
25 |
+ $(libtool) --tag=CC --mode=install ${INSTALL} -s -c $$i.stc-ssl $(DESTDIR)$(bindir) ; \ |
26 |
if test -f $$i.1 ; \ |
27 |
then $(INSTALL) -c -m 644 $$i.1 $(DESTDIR)$(mandir)/man1/$$i.1 ; \ |
28 |
else $(INSTALL) -c -m 644 $(srcdir)/$$i.1 $(DESTDIR)$(mandir)/man1/$$i.1 ; \ |