diff options
author | Joerg Bornemann <joerg.bornemann@nokia.com> | 2010-08-02 15:04:14 (GMT) |
---|---|---|
committer | Toby Tomkins <toby.tomkins@nokia.com> | 2010-08-04 03:49:08 (GMT) |
commit | f564897bb3ef1b444b7ad8cdc45277d4f91114cf (patch) | |
tree | 8a318dcca6778587d1813cd3a1775c3a58be0564 | |
parent | 0263988be6c38c29067e98dac6eddaf27dd4030d (diff) | |
download | Qt-f564897bb3ef1b444b7ad8cdc45277d4f91114cf.zip Qt-f564897bb3ef1b444b7ad8cdc45277d4f91114cf.tar.gz Qt-f564897bb3ef1b444b7ad8cdc45277d4f91114cf.tar.bz2 |
configure: don't symlink the mkspecs/features directory
In shadow builds, the directory QT_BUILD_TREE/mkspecs/features
isn't a mere symlink anymore. The directories below mkspecs/features
are copied and every single file is symlinked.
This makes it possible to place .prf files into a shadow build's
mkspecs/features directory, like Qt Mobility does with its mobility.prf,
without polluting the source directory.
Task-number: QTBUG-12545
Reviewed-by: ossi
(cherry picked from commit aff888a3e7f3d9ee2c5611c2dd5c0ff1693752c6)
-rwxr-xr-x | configure | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -2357,6 +2357,14 @@ if [ "$OPT_SHADOW" = "yes" ]; then ln -s "$relpath"/mkspecs/* "$outpath/mkspecs" rm -f "$outpath/mkspecs/default" + # Special case for mkspecs/features directory. + # To be able to place .prf files into a shadow build directory, + # we're creating links for files only. The directory structure is reproduced. + # A simple "cp -rs" doesn't work on Mac. :( + rm -rf "$outpath/mkspecs/features" + find "$relpath/mkspecs/features" -type d | sed "s,^$relpath,$outpath," | xargs mkdir -p + find "$relpath/mkspecs/features" -type f | sed "s,^$relpath/,," | xargs -n 1 -I % ln -s "$relpath/%" "$outpath/%" + # symlink the doc directory rm -rf "$outpath/doc" ln -s "$relpath/doc" "$outpath/doc" |