diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-05 15:06:47 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-05 15:06:47 -0500 |
commit | 1915eb05e5ddf454a1596c1320c3e56f8cc84043 (patch) | |
tree | 13dcb543bdfb962a6cc07c7c285f2f4dc3f3890d | |
parent | da48979ab0b59f0174b10e3fc1073673ede65428 (diff) | |
download | koffice-1915eb05e5ddf454a1596c1320c3e56f8cc84043.tar.gz koffice-1915eb05e5ddf454a1596c1320c3e56f8cc84043.zip |
Fix FTBFS when wv2-config libs is broken
-rw-r--r-- | filters/kword/msword/configure.in.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/kword/msword/configure.in.in b/filters/kword/msword/configure.in.in index 724d5ef6..92120982 100644 --- a/filters/kword/msword/configure.in.in +++ b/filters/kword/msword/configure.in.in @@ -26,7 +26,7 @@ if test -n "$WV2_CONFIG"; then vers=`$WV2_CONFIG --version 2>/dev/null | $SED -e 's/libwv2 //' | $AWK 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'` if test -n "$vers" && test "$vers" -ge 1009 then - LIBWV2_LIBS="`$WV2_CONFIG --libs`" + LIBWV2_LIBS="-lwv2" LIBWV2_RPATH= for args in $LIBWV2_LIBS; do case $args in |