~ubuntu-branches/debian/sid/tdb/sid

« back to all changes in this revision

Viewing changes to buildtools/wafsamba/samba_deps.py

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2014-12-01 21:44:24 UTC
  • mfrom: (1.4.11)
  • Revision ID: package-import@ubuntu.com-20141201214424-9w871mf4fvvh8tdl
Tags: 1.3.2-1
* New upstream release.
 + Fixes __attribute__((visibility)) check to not use nested functions.
   Closes: #749986
* Drop missing-stdbool-include.patch; now included upstream.
* Update 40_test_transaction_expand_non_fatal.diff: Ignore tdb1-run-
  mutex-openflags2 test output, since newly added test fails on
  Debian.
* Bump standards version to 3.9.6 (no changes).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1021
1021
            denv.outenv[t.sname] = tdeps
1022
1022
 
1023
1023
    depsfile = os.path.join(bld.bdir, "sambadeps")
1024
 
    denv.store(depsfile)
 
1024
    denv.store_fast(depsfile)
1025
1025
 
1026
1026
 
1027
1027
 
1031
1031
    denv = Environment.Environment()
1032
1032
    try:
1033
1033
        debug('deps: checking saved dependencies')
1034
 
        denv.load(depsfile)
 
1034
        denv.load_fast(depsfile)
1035
1035
        if (denv.version != savedeps_version or
1036
1036
            denv.savedeps_inputs != savedeps_inputs or
1037
1037
            denv.savedeps_outputs != savedeps_outputs):
1038
1038
            return False
1039
 
    except:
 
1039
    except Exception:
1040
1040
        return False
1041
1041
 
1042
1042
    # check if critical files have changed