mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Scons: fix a isdir typo
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14288 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
9067cdb3e8
commit
b2d7d52537
@ -550,7 +550,7 @@ if env.has_key('qt_lib_path') and env['qt_lib_path']:
|
||||
elif os.path.isdir(os.path.join(env.subst('$QTDIR'), 'lib')):
|
||||
qt_lib_path = env.subst('$QTDIR/lib')
|
||||
# this is the path for cygwin.
|
||||
elif os.path.idsir(os.path.join('/usr/lib/', frontend, 'lib')):
|
||||
elif os.path.isdir(os.path.join('/usr/lib/', frontend, 'lib')):
|
||||
qt_lib_path = env.subst('/usr/lib/$frontend/lib')
|
||||
else:
|
||||
print "Qt library directory is not found. Please specify it using qt_lib_path"
|
||||
|
Loading…
Reference in New Issue
Block a user