Autoconf: add spack external find support (#16692)
This commit is contained in:
parent
73fe3ce158
commit
c18167d01f
@ -3,7 +3,7 @@
|
||||
#
|
||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
|
||||
from spack import *
|
||||
import re
|
||||
|
||||
|
||||
class Autoconf(AutotoolsPackage, GNUMirrorPackage):
|
||||
@ -24,6 +24,17 @@ class Autoconf(AutotoolsPackage, GNUMirrorPackage):
|
||||
|
||||
build_directory = 'spack-build'
|
||||
|
||||
executables = [
|
||||
'^autoconf$', '^autoheader$', '^autom4te$', '^autoreconf$',
|
||||
'^autoscan$', '^autoupdate$', '^ifnames$'
|
||||
]
|
||||
|
||||
@classmethod
|
||||
def determine_version(cls, exe):
|
||||
output = Executable(exe)('--version', output=str, error=str)
|
||||
match = re.search(r'\(GNU Autoconf\)\s+(\S+)', output)
|
||||
return match.group(1) if match else None
|
||||
|
||||
def patch(self):
|
||||
# The full perl shebang might be too long; we have to fix this here
|
||||
# because autom4te is called during the build
|
||||
|
Loading…
Reference in New Issue
Block a user