We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0bc27a commit cba4a7eCopy full SHA for cba4a7e
build-aux/m4/bitcoin_qt.m4
@@ -123,7 +123,12 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
123
_BITCOIN_QT_CHECK_STATIC_LIBS
124
125
if test "x$qt_plugin_path" != x; then
126
- QT_LIBS="$QT_LIBS -L$qt_plugin_path/platforms -L$qt_plugin_path/styles"
+ if test -d "$qt_plugin_path/platforms"; then
127
+ QT_LIBS="$QT_LIBS -L$qt_plugin_path/platforms"
128
+ fi
129
+ if test -d "$qt_plugin_path/styles"; then
130
+ QT_LIBS="$QT_LIBS -L$qt_plugin_path/styles"
131
132
if test -d "$qt_plugin_path/accessible"; then
133
QT_LIBS="$QT_LIBS -L$qt_plugin_path/accessible"
134
fi
0 commit comments