[kernel] r8098 - dists/trunk/linux-2.6/debian/bin

Bastian Blank waldi at alioth.debian.org
Thu Jan 4 23:53:54 CET 2007


Author: waldi
Date: Thu Jan  4 23:53:54 2007
New Revision: 8098

Modified:
   dists/trunk/linux-2.6/debian/bin/genorig.py
Log:
debian/bin/genorig.py: Fix permissions of output file.


Modified: dists/trunk/linux-2.6/debian/bin/genorig.py
==============================================================================
--- dists/trunk/linux-2.6/debian/bin/genorig.py	(original)
+++ dists/trunk/linux-2.6/debian/bin/genorig.py	Thu Jan  4 23:53:54 2007
@@ -69,6 +69,7 @@
         cmdline = ['tar -czf', out, '-C', self.dir, self.orig]
         if os.spawnv(os.P_WAIT, '/bin/sh', ['sh', '-c', ' '.join(cmdline)]):
             raise RuntimeError("Can't patch source")
+        os.chmod(out, 0644)
 
 if __name__ == '__main__':
     main(*sys.argv[1:])()



More information about the Kernel-svn-changes mailing list