blob: 0f26a0f8e04c7d27d4ca87e9e173855da6c69293 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
--- common-src/Makefile.in.orig 2009-01-22 22:51:24.000000000 +0900
+++ common-src/Makefile.in 2009-01-27 07:25:59.000000000 +0900
@@ -1074,6 +1074,7 @@
sbin_SCRIPTS_PERL = \
$(sbin_CHECK_PERL)
+@WANT_SERVER_TRUE@sbin_SCRIPTS_PERL =
amlibexec_CHECK_PERL =
amlibexec_SCRIPTS_PERL = \
@@ -1084,6 +1085,7 @@
amaespipe \
amcrypt-ossl \
amcrypt-ossl-asym
+@WANT_SERVER_TRUE@sbin_SCRIPTS_SHELL =
amlibexec_SCRIPTS_SHELL =
SCRIPTS_INCLUDE = \
@@ -1137,15 +1139,15 @@
versuff.c: $(top_builddir)/config.status $(srcdir)/versuff.c.in
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
install-amlibLTLIBRARIES: $(amlib_LTLIBRARIES)
- @$(NORMAL_INSTALL)
- test -z "$(amlibdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibdir)"
- @list='$(amlib_LTLIBRARIES)'; for p in $$list; do \
- if test -f $$p; then \
- f=$(am__strip_dir) \
- echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(amlibLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(amlibdir)/$$f'"; \
- $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(amlibLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(amlibdir)/$$f"; \
- else :; fi; \
- done
+@WANT_CLIENT_TRUE@ @$(NORMAL_INSTALL)
+@WANT_CLIENT_TRUE@ test -z "$(amlibdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibdir)"
+@WANT_CLIENT_TRUE@ @list='$(amlib_LTLIBRARIES)'; for p in $$list; do \
+@WANT_CLIENT_TRUE@ if test -f $$p; then \
+@WANT_CLIENT_TRUE@ f=$(am__strip_dir) \
+@WANT_CLIENT_TRUE@ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(amlibLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(amlibdir)/$$f'"; \
+@WANT_CLIENT_TRUE@ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(amlibLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(amlibdir)/$$f"; \
+@WANT_CLIENT_TRUE@ else :; fi; \
+@WANT_CLIENT_TRUE@ done
uninstall-amlibLTLIBRARIES:
@$(NORMAL_UNINSTALL)
|