summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@nokia.com>2009-06-12 15:51:58 +0200
committerTor Arne Vestbø <tor.arne.vestbo@nokia.com>2009-06-12 15:56:48 +0200
commitd8f089c1cccfc6d996ef65d06af33bd696654963 (patch)
tree4843b5537d65010fac535615bc57575788fc6c32 /configure
parent4c643900bb9cc561250ab3dcc2fa230081767d10 (diff)
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>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 0a8b61a80..ec920950a 100755
--- a/configure
+++ b/configure
@@ -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