From e03d6a38ac043d12843fa9dfe907912aa5af8a1e Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 6 Oct 2021 12:20:48 -0400 Subject: [PATCH] Fix acsforwardmodel.e missing execution bit --- pkg/acs/calacs/acscte/wscript | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/acs/calacs/acscte/wscript b/pkg/acs/calacs/acscte/wscript index 22983fb4..e78be81f 100644 --- a/pkg/acs/calacs/acscte/wscript +++ b/pkg/acs/calacs/acscte/wscript @@ -1,4 +1,6 @@ # vim: set syntax=python: +from waflib import Utils + def build(bld): t = bld.program( @@ -15,4 +17,4 @@ def build(bld): rpath=bld.env.LIBPATH_CFITSIO, install_path = '${PREFIX}/bin' ) - bld.install_as('${PREFIX}/bin/acscteforwardmodel.e', 'acscte.e') + bld.install_as('${PREFIX}/bin/acscteforwardmodel.e', 'acscte.e', chmod=Utils.O755)