mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-28 13:57:22 +00:00
build system: Qt: don't assume GNU sed
\(…\) seems to be a GNU extension to sed, and MacOS uses BSD sed which doesn't support it.
This commit is contained in:
parent
ec584c4a25
commit
943ee96fc9
@ -1,5 +1,8 @@
|
|||||||
2015-08-15 Moritz Bunkus <moritz@bunkus.org>
|
2015-08-15 Moritz Bunkus <moritz@bunkus.org>
|
||||||
|
|
||||||
|
* build system: bug fix: fixed Qt platform plugin detection on
|
||||||
|
MacOS.
|
||||||
|
|
||||||
* Released v8.3.0.
|
* Released v8.3.0.
|
||||||
|
|
||||||
* MKVToolNix GUI: chapter editor enhancement: pressing return will
|
* MKVToolNix GUI: chapter editor enhancement: pressing return will
|
||||||
|
@ -201,8 +201,8 @@ return 0;
|
|||||||
|
|
||||||
if test x"$wanted_plugin" != x; then
|
if test x"$wanted_plugin" != x; then
|
||||||
plugins_dir=
|
plugins_dir=
|
||||||
for dir in `echo $QT_LIBS | sed -e 's/-l[^ ]*\( \|$\)//g' -e 's/-L//g'` ; do
|
for dir in `echo " $QT_LIBS " | sed -e 's/ -l[^ ]*//g' -e 's/-L//g'` ; do
|
||||||
if test -f "$dir/../plugins/platforms/libq${wanted_plugin}.a" ; then
|
if test -f "$dir/../plugins/platforms/libq${wanted_plugin}.a"; then
|
||||||
plugins_dir="$dir/../plugins"
|
plugins_dir="$dir/../plugins"
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user