Changeset 144 for emailtotracscript


Ignore:
Timestamp:
12/06/06 14:32:47 (17 years ago)
Author:
bas
Message:

EmailtoTracScript?:

Makefile.in:

  • Added install_conf stanza
Location:
emailtotracscript/trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • emailtotracscript/trunk/ChangeLog

    r142 r144  
    2222        * delete_spam.py:
    2323          - Now works for version 0.10 with new API-functions
     24          Fixed by: Bas van der Vlies
     25
     26        * Makefile.in
     27          - Added install-conf. Install email2trac.conf if there is none
     28            installed.
    2429          Fixed by: Bas van der Vlies
    2530
  • emailtotracscript/trunk/Makefile.in

    r109 r144  
    3232        $(CC) $(CFLAGS) -o $@ run_email2trac.c
    3333
    34 install: all
     34install: all install-conf
    3535        $(INSTALL) -d $(DESTDIR)$(EXEC_PREFIX)
    3636        $(INSTALL) -m 4111 -o root run_email2trac $(DESTDIR)$(EXEC_PREFIX)
     
    4141        done
    4242
     43install-conf:
     44        if [ ! -f  $(DESTDIR)/$(CONFIG)/email2trac.conf ] ; \
     45        then \
     46                $(INSTALL) -c -m 644 -o root email2trac.conf $(DESTDIR)/$(CONFIG)/email2trac.conf ;\
     47        fi
     48 
    4349clean:
    4450        rm run_email2trac
  • emailtotracscript/trunk/debian/changelog

    r142 r144  
     1email2trac (0.9.0-2) stable; urgency=low
     2
     3  * add email2trac.conf to conffiles
     4
     5 -- root <root@subtrac.sara.nl>  Wed,  6 Dec 2006 14:28:04 +0100
     6
    17email2trac (0.9.0-1) stable; urgency=low
    28
Note: See TracChangeset for help on using the changeset viewer.