summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Cardona <remi@gentoo.org>2009-10-06 01:05:23 +0200
committerRémi Cardona <remi@gentoo.org>2009-10-06 01:25:07 +0200
commit5a0fe3df2f6a5a7caa95c3927a61708bec5b0e38 (patch)
tree670965f878ce6b17873b286426e2d1b9991621c0 /scripts
parentMove stabled libs to the tree. (diff)
downloadx11-5a0fe3df2f6a5a7caa95c3927a61708bec5b0e38.tar.gz
x11-5a0fe3df2f6a5a7caa95c3927a61708bec5b0e38.tar.bz2
x11-5a0fe3df2f6a5a7caa95c3927a61708bec5b0e38.zip
fix digestcheck script, now it works thanks to Zac
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/digestcheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/digestcheck.py b/scripts/digestcheck.py
index 98b13046..36a3ce80 100755
--- a/scripts/digestcheck.py
+++ b/scripts/digestcheck.py
@@ -7,6 +7,6 @@ os.environ['PORTDIR'] = os.path.dirname(os.path.dirname(manifest_dir))
settings = portage.config(clone=portage.settings)
for directory in sys.argv[1:]:
settings['O'] = directory
- if not portage.digestcheck([], settings):
+ if not portage.digestcheck([], settings, strict=True):
sys.exit(1)
sys.exit(0)