Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 105775 | Differences between
and this patch

Collapse All | Expand All

(-)bksys/generic.py.old (-1 / +2 lines)
Lines 244-250 Link Here
244
			ret=self.env.Program(self.p_localtarget, self.p_localsource)
244
			ret=self.env.Program(self.p_localtarget, self.p_localsource)
245
			if not self.env.has_key('NOAUTOINSTALL'):
245
			if not self.env.has_key('NOAUTOINSTALL'):
246
				ins=self.env.bksys_install(self.instdir, ret)
246
				ins=self.env.bksys_install(self.instdir, ret)
247
				if self.perms: self.env.AddPostAction(ins, self.env.Chmod(ins, self.perms))
247
				if ins and self.perms:
248
				    for i in ins: self.env.AddPostAction(ins, self.env.Chmod(str(i), self.perms))
248
		elif self.type=='staticlib':
249
		elif self.type=='staticlib':
249
			ret=self.env.StaticLibrary(self.p_localtarget, self.p_localsource)
250
			ret=self.env.StaticLibrary(self.p_localtarget, self.p_localsource)
250
251

Return to bug 105775