~ubuntu-branches/debian/sid/openchange/sid

« back to all changes in this revision

Viewing changes to mapiproxy/libmapistore/configure

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2012-04-12 20:07:57 UTC
  • mfrom: (11 sid)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20120412200757-k933d9trljmxj1l4
Tags: 1:1.0-4
* openchangeserver: Add dependency on openchangeproxy.
* Rebuild against newer version of Samba 4.
* Use dpkg-buildflags.
* Migrate to Git, update Vcs-Git header.
* Switch to debhelper 9.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
PREVPATH=`dirname $0`
4
 
 
5
 
if [ -f $PREVPATH/../../buildtools/waf ]; then
6
 
        WAF=../../buildtools/waf
7
 
elif [ -f $PREVPATH/buildtools/bin/waf ]; then
8
 
        WAF=./buildtools/waf
9
 
else
10
 
        echo "replace: Unable to find waf"
11
 
        exit 1
12
 
fi
13
 
 
14
 
# using JOBS=1 gives maximum compatibility with
15
 
# systems like AIX which have broken threading in python
16
 
JOBS=1
17
 
export JOBS
18
 
 
19
 
cd . || exit 1
20
 
$WAF configure "$@" || exit 1
21
 
cd $PREVPATH
 
 
b'\\ No newline at end of file'