eospac: avoid conflict with linux's getopt (#13241)
* eospac: avoid conflict with linux's getopt * Update package.py
This commit is contained in:
parent
e65b7f8ebf
commit
6cd997e743
1 changed files with 5 additions and 0 deletions
|
@ -43,3 +43,8 @@ def install(self, spec, prefix):
|
|||
'INSTALLED_INCLUDE_DIR={0}'.format(prefix.include),
|
||||
'INSTALLED_EXAMPLE_DIR={0}'.format(prefix.example),
|
||||
'INSTALLED_BIN_DIR={0}'.format(prefix.bin))
|
||||
|
||||
# fix conflict with linux's getopt for 6.4.0beta.2
|
||||
if spec.satisfies('@6.4.0beta.2'):
|
||||
with working_dir(prefix.bin):
|
||||
move('getopt', 'driver_getopt')
|
||||
|
|
Loading…
Reference in a new issue