From d8f089c1cccfc6d996ef65d06af33bd696654963 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tor=20Arne=20Vestb=C3=B8?= Date: Fri, 12 Jun 2009 15:51:58 +0200 Subject: 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 --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 0a8b61a..ec92095 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 -- cgit v0.12