py-sip: fix for missing flex/bison (#22870)

This commit is contained in:
Robert Mijakovic 2021-04-18 16:16:08 +02:00 committed by GitHub
parent 181341c8b3
commit 7e56973d22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,8 +29,8 @@ class PySip(Package):
extends('python')
depends_on('flex', type='build', when='@develop')
depends_on('bison', type='build', when='@develop')
depends_on('flex', type='build')
depends_on('bison', type='build')
# https://www.riverbankcomputing.com/static/Docs/sip/installation.html
phases = ['configure', 'build', 'install']