Make sure the files we try to execute in the chroot are marked as executable.
[catalyst.git] / arch / ia64.py
1
2 import builder,os
3 from catalyst_support import *
4
5 class arch_ia64(builder.generic):
6         "builder class for ia64"
7         def __init__(self,myspec):
8                 builder.generic.__init__(self,myspec)
9                 self.settings["CHROOT"]="chroot"
10                 self.settings["CFLAGS"]="-O2 -pipe"
11                 self.settings["CFLAGS"]="-O2 -pipe"
12                 self.settings["CHOST"]="ia64-unknown-linux-gnu"
13
14 def register():
15         "Inform main catalyst program of the contents of this plugin."
16         return ({ "ia64":arch_ia64 }, ("ia64", ))