changeset 5522:b685562acfe2

Lift mandatory stat restriction. Fixes build. Using SH/bash now from tools/bin, we have real tight stat restriction. Many packages do not autoupdate/configure/build.
author Jan Nieuwenhuizen <janneke@gnu.org>
date Fri, 21 Aug 2009 00:54:31 +0200
parents dfb61198e378
children 8686ac7d2539
files bin/gub
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bin/gub	Fri Aug 21 00:53:31 2009 +0200
+++ b/bin/gub	Fri Aug 21 00:54:31 2009 +0200
@@ -313,7 +313,9 @@
     sys.exit (exceptional_build (settings, options, files, logger))
 
 def main ():
-    if not 'stat' in misc.librestrict ():
+    # stat restriction has become much more real using BASH
+    # lots of specs do not compile atm
+    if False and not 'stat' in misc.librestrict ():
         os.environ['LIBRESTRICT'] = 'open:stat'
         printf ('non-stat restriction is obsolete, use')
         printf ('export LIBRESTRICT=open:stat')