~ubuntu-branches/ubuntu/dapper/sendmail/dapper-security

« back to all changes in this revision

Viewing changes to debian/build/Build

  • Committer: Bazaar Package Importer
  • Author(s): Richard A Nelson (Rick)
  • Date: 2004-12-15 19:30:00 UTC
  • Revision ID: james.westby@ubuntu.com-20041215193000-3v70qonkis3occ36
Tags: 8.13.2-1
* New upstream release
  - DB termination before exit (vacation, mail.local)
  - threading for milter
  - DNS for IPv6 and SASL
  - Cyrus IMAP LMTP and AUTH
  - see Changelog for the details
* Refresh FAQ

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#-----------------------------------------------------------------------------
 
3
#   $Sendmail: build/Build,v 8.12.0 2001/03/21 11:41:31 cowboy Exp $
 
4
#
 
5
#   Copyright (c) 2001-2001 Richard Nelson.  All Rights Reserved.
 
6
#
 
7
#   Debian script to rationalize builds for Sendmail prior to 8.9.0
 
8
#
 
9
#-----------------------------------------------------------------------------
 
10
set -e;
 
11
 
 
12
# If ./Makefiles is a directory, we need to use makesendmail
 
13
if [ -d Makefiles ]; then
 
14
        sh makesendmail;
 
15
 
 
16
# If ./Makefile.dist exists, use it
 
17
elif [ -f Makefile.dist ]; then
 
18
        (cd obj* && make;);
 
19
 
 
20
# Otherwise, well, there's not much we can do
 
21
else
 
22
        :;
 
23
        fi;