diff options
author | Tor Arne Vestbø <tor.arne.vestbo@nokia.com> | 2009-06-12 13:51:58 (GMT) |
---|---|---|
committer | Tor Arne Vestbø <tor.arne.vestbo@nokia.com> | 2009-06-12 13:56:48 (GMT) |
commit | d8f089c1cccfc6d996ef65d06af33bd696654963 (patch) | |
tree | 4843b5537d65010fac535615bc57575788fc6c32 | |
parent | 4c643900bb9cc561250ab3dcc2fa230081767d10 (diff) | |
download | Qt-d8f089c1cccfc6d996ef65d06af33bd696654963.zip Qt-d8f089c1cccfc6d996ef65d06af33bd696654963.tar.gz Qt-d8f089c1cccfc6d996ef65d06af33bd696654963.tar.bz2 |
Use output-path, not relative, when symlinking qvfb-files in configure
This gets rid of a few warnings when shadow-building Qt, since the
symlinks are no longer created in the source tree.
Reviewed-by: Paul Olav Tvete <paul.tvete@nokia.com>
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2105,8 +2105,9 @@ fi # symlink files from src/gui/embedded neccessary to build qvfb if [ "$CFG_DEV" = "yes" ]; then + mkdir -p "$outpath/tools/qvfb" for f in qvfbhdr.h qlock_p.h qlock.cpp qwssignalhandler_p.h qwssignalhandler.cpp; do - dest="${relpath}/tools/qvfb/${f}" + dest="${outpath}/tools/qvfb/${f}" rm -f "$dest" ln -s "${relpath}/src/gui/embedded/${f}" "${dest}" done |