From 1a4f72da5aefa92b2bb78cf1ff96c34d7c3c303c Mon Sep 17 00:00:00 2001 From: Thomas Zander Date: Tue, 6 Apr 2010 15:39:39 +0200 Subject: Make shipped symbian scripts available from the build-dir bin dir. Reviewed-by: Denis Dzyubenko --- configure | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/configure b/configure index 0dbf98f..30bc564 100755 --- a/configure +++ b/configure @@ -2315,6 +2315,17 @@ if [ "$OPT_SHADOW" = "yes" ]; then chmod 755 "$outpath/bin/syncqt" fi + for i in createpackage patch_capabilities; do + rm -f "$outpath/bin/$i" + if [ -x "$relpath/bin/$i" ]; then + mkdir -p "$outpath/bin" + echo "#!/bin/sh" >"$outpath/bin/$i" + echo "QTDIR=\"$relpath\"; export QTDIR" >>"$outpath/bin/$i" + echo "\"$relpath/bin/$i\" \"\$@\"" >>"$outpath/bin/$i" + chmod 755 "$outpath/bin/$i" + fi + done + # symlink the mkspecs directory mkdir -p "$outpath/mkspecs" rm -f "$outpath"/mkspecs/* -- cgit v0.12