Skip to content

Commit 59a0387

Browse files
Vampiretnyblom
authored andcommitted
Fix evaluation of emptyness of SVN_LIBDIR that sometimes always gives false, sometime always true, but never what is intended
1 parent 87a645e commit 59a0387

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/src.pro

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ DEPENDPATH += .
2828
QT = core
2929

3030
INCLUDEPATH += . $$SVN_INCLUDE $$APR_INCLUDE
31-
!isEmpty($$SVN_LIBDIR): LIBS += -L$$SVN_LIBDIR
31+
!isEmpty(SVN_LIBDIR): LIBS += -L$$SVN_LIBDIR
3232
LIBS += -lsvn_fs-1 -lsvn_repos-1 -lapr-1 -lsvn_subr-1
3333

3434
# Input

0 commit comments

Comments
 (0)