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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
$NetBSD: patch-aa,v 1.5 2008/04/27 17:06:40 bouyer Exp $
--- Makefile.in.orig 2007-12-05 16:37:14.000000000 +0100
+++ Makefile.in 2008-04-27 15:16:02.000000000 +0200
@@ -508,7 +508,7 @@
@CVS2CL@
#endif
-all: warning checkperl checkcpan sources wrapper soap_wrapper man locale
+all: sources wrapper soap_wrapper man locale
rpm: build_rh_rpm build_mdk_rpm
@@ -612,7 +612,7 @@
$(MAKE) PERL='${PERL}' clean) || exit 1; \
done;
-install: importantchanges installdir installsrc installwws installwebtt2 installmailtt2 installlocale installman installscript installsample installconfig installdoc installsoap nextstep
+install: importantchanges installdir installsrc installwws installwebtt2 installmailtt2 installlocale installman installscript installsample installdoc installsoap nextstep
nextstep:
@echo ""
@@ -751,7 +751,7 @@
installdir:
@echo "Creating required directories"
- @for dir in $(DIR) $(EXPL_DIR) $(CONFDIR) $(SAMPLEDIR) $(ETCDIR) $(BINDIR) $(LOCALEDIR) $(DOCDIR) $(DIR)/static_content $(DIR)/static_content/icons ; do \
+ @for dir in $(DIR) $(EXPL_DIR) $(CONFDIR) $(SAMPLEDIR) $(ETCDIR) $(BINDIR) $(LOCALEDIR) $(DOCDIR) $(DIR)/sympa/static_content $(DIR)/sympa/static_content/icons ; do \
if [ ! -d $(DESTDIR)$$dir ] ; then \
echo "Creating $(DESTDIR)$$dir"; \
mkdir -p $(DESTDIR)$$dir; \
@@ -760,7 +760,7 @@
chmod 755 $(DESTDIR)$$dir; \
fi \
done
- @if [ ! -f $(DESTDIR)$(CONFDIR)/sympa.conf ] ; then \
+ @if false; then \
echo "First installation : installing conf directories..."; \
for dir in create_list_templates mail_tt2 web_tt2 scenari \
task_models general_task_models; do \
@@ -783,7 +783,7 @@
$(PERL) ./subst.pl src/etc/README_etc \
) \
fi
- @if [ ! -f $(DESTDIR)$(CONFDIR)/sympa.conf ] ; then \
+ @if false; then \
echo "First installation : installing spool directories..."; \
for dir in $(SPOOLDIR) $(SPOOLDIR)/msg $(SPOOLDIR)/digest $(SPOOLDIR)/moderation \
$(SPOOLDIR)/expire $(SPOOLDIR)/auth $(SPOOLDIR)/outgoing $(SPOOLDIR)/tmp \
@@ -797,7 +797,7 @@
fi \
done \
fi
- @if [ ! -f $(DESTDIR)$(CONFDIR)/sympa.conf ] ; then \
+ @if false ; then \
echo "First installation : creating archives and bounce directories..."; \
for dir in bounce arc ; do \
if [ ! -d $(DESTDIR)$(DIR)/$$dir ] ; then \
|