From b2d7d5253766e5555f072928099216f5b086b1cb Mon Sep 17 00:00:00 2001 From: Bo Peng Date: Sun, 2 Jul 2006 03:17:15 +0000 Subject: [PATCH] Scons: fix a isdir typo git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14288 a592a061-630c-0410-9148-cb99ea01b6c8 --- development/scons/SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/development/scons/SConstruct b/development/scons/SConstruct index 82201b312b..d843a15c89 100644 --- a/development/scons/SConstruct +++ b/development/scons/SConstruct @@ -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" -- 2.39.5