diff options
author | Geoffrey Oxberry <goxberry@gmail.com> | 2018-02-14 13:52:44 -0800 |
---|---|---|
committer | scheibelp <scheibel1@llnl.gov> | 2018-02-14 13:52:44 -0800 |
commit | 277ab2d355ce80c6cff14615df9e9a90b7859bf9 (patch) | |
tree | 85d0270388b0bf37fe156c09338d1dd9e3ee7fa3 /var | |
parent | a7b8d26fa784a8731ef382ca769384da8c2b5187 (diff) | |
download | spack-277ab2d355ce80c6cff14615df9e9a90b7859bf9.tar.gz spack-277ab2d355ce80c6cff14615df9e9a90b7859bf9.tar.bz2 spack-277ab2d355ce80c6cff14615df9e9a90b7859bf9.tar.xz spack-277ab2d355ce80c6cff14615df9e9a90b7859bf9.zip |
libtool: symlink correctly on darwin (#7179)
To accommodate build systems on Darwin which look for glibtool/ize,
#7060 attempted to provide glibtool/ize symlinks for libtool/ize
but accidentally created the same symlink twice. #7073 reverted this
and replaced libtool/ize with glibtool/ize on Darwin. This led to
#7163 since AutotoolsPackages depend on the presence of the 'libtool'
binary, so this returns to the approach of #7160 but makes the
correct symlinks.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/libtool/package.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/libtool/package.py b/var/spack/repos/builtin/packages/libtool/package.py index b5d5c9b2b1..e9daa69ed8 100644 --- a/var/spack/repos/builtin/packages/libtool/package.py +++ b/var/spack/repos/builtin/packages/libtool/package.py @@ -56,13 +56,15 @@ class Libtool(AutotoolsPackage): for name in executables: setattr(module, name, self._make_executable(name)) - @when('platform=darwin') - def configure_args(self): + @run_after('install') + def post_install(self): # Some platforms name GNU libtool and GNU libtoolize # 'glibtool' and 'glibtoolize', respectively, to differentiate # them from BSD libtool and BSD libtoolize. On these BSD # platforms, build systems sometimes expect to use the assumed # GNU commands glibtool and glibtoolize instead of the BSD # variant; this happens frequently, for instance, on Darwin - args = ['--program-prefix=g'] - return args + symlink(join_path(self.prefix.bin, 'libtool'), + join_path(self.prefix.bin, 'glibtool')) + symlink(join_path(self.prefix.bin, 'libtoolize'), + join_path(self.prefix.bin, 'glibtoolize')) |