mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-27 05:14:47 +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>
|
||||
|
||||
* build system: bug fix: fixed Qt platform plugin detection on
|
||||
MacOS.
|
||||
|
||||
* Released v8.3.0.
|
||||
|
||||
* MKVToolNix GUI: chapter editor enhancement: pressing return will
|
||||
|
@ -201,8 +201,8 @@ return 0;
|
||||
|
||||
if test x"$wanted_plugin" != x; then
|
||||
plugins_dir=
|
||||
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
|
||||
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
|
||||
plugins_dir="$dir/../plugins"
|
||||
break
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user