diff options
author | seb <seb@pkgsrc.org> | 2004-10-10 15:09:23 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2004-10-10 15:09:23 +0000 |
commit | 2187f63369b09d0ece1beb5d4a27491dd6dbf6cf (patch) | |
tree | c6f92155a5e6fe1ac3a0015486daec23fc5999c7 /mail | |
parent | a143d162be14818073d8793db6cd8daefa33bff2 (diff) | |
download | pkgsrc-2187f63369b09d0ece1beb5d4a27491dd6dbf6cf.tar.gz |
'if [ false ]; then ...' Yeah right... Fix my own stupidity.
No need to bump PKGREVISION or something, this was harmless:
some directories were made twice while installing from pkgsrc (by do-install
target and by INSTALL script) and binary packages were safe because the
INSTALL script creates them.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/sympa/distinfo | 4 | ||||
-rw-r--r-- | mail/sympa/patches/patch-aa | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/mail/sympa/distinfo b/mail/sympa/distinfo index 1831500fdae..403f4cbb492 100644 --- a/mail/sympa/distinfo +++ b/mail/sympa/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.3 2004/09/26 20:13:34 seb Exp $ +$NetBSD: distinfo,v 1.4 2004/10/10 15:09:23 seb Exp $ SHA1 (sympa-4.1.2.tar.gz) = 68a122a8d762874e2b4bb0c80020e36d8bc344fc Size (sympa-4.1.2.tar.gz) = 2354843 bytes -SHA1 (patch-aa) = c77d1fb1024cd0b0f7eed9d08e2f403f085031de +SHA1 (patch-aa) = 1653a5700572068348e93f659892119230795dae SHA1 (patch-ab) = 3b15442e7146dd56bfab698bcb062911a5bba599 SHA1 (patch-ac) = 77802bab188da024c18810c07bf62064b28e3af1 diff --git a/mail/sympa/patches/patch-aa b/mail/sympa/patches/patch-aa index edd129beaa2..8612226449f 100644 --- a/mail/sympa/patches/patch-aa +++ b/mail/sympa/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.2 2004/09/26 20:13:34 seb Exp $ +$NetBSD: patch-aa,v 1.3 2004/10/10 15:09:23 seb Exp $ --- Makefile.in.orig 2004-07-16 17:26:51.000000000 +0000 +++ Makefile.in @@ -16,7 +16,7 @@ $NetBSD: patch-aa,v 1.2 2004/09/26 20:13:34 seb Exp $ fi \ done - @if [ ! -f $(DESTDIR)$(CONFDIR)/sympa.conf ] ; then \ -+ @if [ false ] ; then \ ++ @if false ; then \ echo "First installation : installing conf directories..."; \ for dir in create_list_templates templates wws_templates scenari \ task_models general_task_models; do \ @@ -25,7 +25,7 @@ $NetBSD: patch-aa,v 1.2 2004/09/26 20:13:34 seb Exp $ done \ fi - @if [ ! -f $(DESTDIR)$(CONFDIR)/sympa.conf ] ; then \ -+ @if [ false ] ; 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 \ |