Skip to content

Commit 69fc914

Browse files
check_fortran_compiler.sh was not packaged
1 parent eee664d commit 69fc914

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ class OverrideInstall(install):
2020

2121
def run(self):
2222
#uid, gid = 0, 0
23-
install.run(self) # calling install.run(self) insures that everything
24-
# that happened previously still happens,
23+
install.run(self) # calling install.run(self) insures that everything
24+
# that happened previously still happens,
2525
install_as_user = True
2626
try:
2727
import getpass
@@ -38,7 +38,7 @@ def run(self):
3838
self.do_egg_install()
3939
except Exception as e:
4040
pass
41-
# so the installation does not break!
41+
# so the installation does not break!
4242
# here we start with doing our overriding and private magic ..
4343
mode = 0o777
4444
for filepath in self.get_outputs():
@@ -88,8 +88,8 @@ def dataFiles ():
8888
ret = []
8989
ret.append ( ("smodels/", [ "smodels/version", "smodels/COPYING", "smodels/README.rst", "smodels/INSTALLATION.rst" ]) )
9090
for directory in [ "smodels/share/", "smodels/share/models/",
91-
"smodels/etc/", "smodels/lib/nllfast/nllfast-1.2/",
92-
"smodels/lib/nllfast/nllfast-2.1/", "smodels/lib/nllfast/nllfast-3.1/",
91+
"smodels/etc/", "smodels/lib/", "smodels/lib/nllfast/nllfast-1.2/",
92+
"smodels/lib/nllfast/nllfast-2.1/", "smodels/lib/nllfast/nllfast-3.1/",
9393
"smodels/lib/pythia6/", "smodels/lib/pythia8/", "smodels/lib/resummino/" ]:
9494
ret.append ((directory, listDirectory (directory)))
9595
for directory in ["inputFiles/slha/", "inputFiles/lhe/" ]:
@@ -108,8 +108,8 @@ def compile():
108108
return
109109
needs_build = False
110110
for i in sys.argv[1:]:
111-
if i in [ "build", "build_ext", "build_clib", "install",
112-
"install_lib", "bdist", "bdist_rpm", "bdist_dumb",
111+
if i in [ "build", "build_ext", "build_clib", "install",
112+
"install_lib", "bdist", "bdist_rpm", "bdist_dumb",
113113
"bdist_wininst", "bdist_wheel", "develop"]:
114114
needs_build = True
115115
if not needs_build:

0 commit comments

Comments
 (0)