mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-20 19:14:17 +02:00
IGN:...
This commit is contained in:
parent
6f877e294d
commit
a7668c6897
1 changed files with 1 additions and 1 deletions
|
|
@ -136,7 +136,7 @@ def __init__(self, name, sources, **kwargs):
|
|||
cxx = os.environ.get('CXX', 'g++')
|
||||
cflags = os.environ.get('OVERRIDE_CFLAGS',
|
||||
'-O3 -Wall -DNDEBUG -fno-strict-aliasing -pipe')
|
||||
cflags = shlex.split(cflags) + '-fPIC'
|
||||
cflags = shlex.split(cflags) + ['-fPIC']
|
||||
ldflags = os.environ.get('OVERRIDE_LDFLAGS', '-Wall')
|
||||
ldflags = shlex.split(ldflags)
|
||||
cflags += shlex.split(os.environ.get('CFLAGS', ''))
|
||||
|
|
|
|||
Loading…
Reference in a new issue