Changeset 503 for wu-ftpd

Show
Ignore:
Timestamp:
02/05/10 01:05:22 (6 months ago)
Author:
chrisb
Message:

* Use dpkg-architecture in debian/rules.
* Increase Standards-Version to 3.8.4

Location:
wu-ftpd/trunk/debian
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • wu-ftpd/trunk/debian/changelog

    r502 r503  
    77  * Updated init.d script to depend on $remote_fs instead of $local_fs 
    88  * Split Choices field in config template 
    9  
    10  -- Chris Butler <chrisb@debian.org>  Fri, 05 Feb 2010 00:54:39 +0000 
     9  * Use dpkg-architecture in debian/rules. 
     10  * Increase Standards-Version to 3.8.4 
     11 
     12 -- Chris Butler <chrisb@debian.org>  Fri, 05 Feb 2010 01:05:13 +0000 
    1113 
    1214wu-ftpd (2.6.2-31) unstable; urgency=low 
  • wu-ftpd/trunk/debian/rules

    r445 r503  
    44export CFLAGS = -g -Wall -D_FILE_OFFSET_BITS=64 # -DPARANOID 
    55export INSTALL_PROGRAM = install 
     6 
     7DEB_BUILD_GNU_TYPE := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) 
     8DEB_HOST_GNU_TYPE := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) 
    69 
    710ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) 
     
    2831        autoconf 
    2932        ./configure --prefix=/usr --with-etc-dir=/etc/wu-ftpd \ 
    30                     --with-log-dir=/var/log/wu-ftpd --disable-numericuid \ 
    31                     --mandir='$${prefix}/share/man' --enable-pam \ 
    32                     --enable-quota --enable-passwd --disable-mail 
     33                --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) \ 
     34                --with-log-dir=/var/log/wu-ftpd --disable-numericuid \ 
     35                --mandir='$${prefix}/share/man' --enable-pam \ 
     36                --enable-quota --enable-passwd --disable-mail 
    3337        touch $@ 
    3438