diff options
author | Thiago Macieira <thiago@macieira.org> | 2013-10-11 11:05:38 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-10-11 12:05:07 -0700 |
commit | c684df497677ee69251ca552a209da8895f55396 (patch) | |
tree | 062da81b8d4c18fd30fb10b3e9331d3bcccad6f8 /subsurface-install.pri | |
parent | d3aceafdaa4e2aee060a09878f750718bb1e7df4 (diff) | |
download | subsurface-c684df497677ee69251ca552a209da8895f55396.tar.gz |
Fix the sed regexp: we want to match "lib" followed by : or at the end
There was one extra backslash that got passed to sed, which meant it
matched a literal dollar sign.
Signed-off-by: Thiago Macieira <thiago@macieira.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface-install.pri')
-rw-r--r-- | subsurface-install.pri | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subsurface-install.pri b/subsurface-install.pri index ead1fd221..12da7e1ce 100644 --- a/subsurface-install.pri +++ b/subsurface-install.pri @@ -54,7 +54,7 @@ mac { !win32-msvc* { #!equals($$QMAKE_HOST.os, "Windows"): dlls.commands += OBJDUMP=`$$QMAKE_CC -dumpmachine`-objdump - dlls.commands += PATH=\$\$PATH:`$$QMAKE_CC -print-search-dirs | sed -nE \'/^libraries: =/{s///;s,/lib/?(:|\\\$\$),/bin\\1,g;p;q;}\'` + dlls.commands += PATH=\$\$PATH:`$$QMAKE_CC -print-search-dirs | sed -nE \'/^libraries: =/{s///;s,/lib/?(:|\$\$),/bin\\1,g;p;q;}\'` dlls.commands += perl $$PWD/scripts/win-ldd.pl $(DESTDIR_TARGET) for(plugin, $$list($$DEPLOYMENT_PLUGIN)) { |