summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKoenig, Joerg <Joerg.Koenig@techsat.com>2020-04-26 04:39:06 (GMT)
committerKoenig, Joerg <Joerg.Koenig@techsat.com>2020-04-26 04:39:06 (GMT)
commitc859be3ae14d322ffb6693973ba58800d36bfec2 (patch)
tree3a338a67c56a8d6e835811bc1c4481eac7956f0e
parent5a2b6ff5ce23e865c04bef6e17d290417ebef9e8 (diff)
downloadQt-c859be3ae14d322ffb6693973ba58800d36bfec2.zip
Qt-c859be3ae14d322ffb6693973ba58800d36bfec2.tar.gz
Qt-c859be3ae14d322ffb6693973ba58800d36bfec2.tar.bz2
Fixed location of qt.conf filerefs/changes/81/11081/1
Change-Id: Ibaf100ce85519956645804df16df46e339fe5f1f
-rw-r--r--Jenkinsfile19
1 files changed, 9 insertions, 10 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 49c1f8a..60dbabf 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -141,20 +141,19 @@ stage ("Post processing") {
unzip -o $WORKSPACE/qt-$QT_VER-x86_64-msvc.zip -d $WORKSPACE/INST/$QT_VER/x86_64-msvc
# generate qt.conf for linux to windows cross builds ...
- rm -f $WORKSPACE/INST/$QT_VER/x86-mingw64-shared/bin/qt.conf
- echo "[Paths]" > $WORKSPACE/INST/$QT_VER/x86-mingw64-shared/bin/qt.conf
- echo "Prefix=.." >> $WORKSPACE/INST/$QT_VER/x86-mingw64-shared/bin/qt.conf
- echo "Libraries = lib" >> $WORKSPACE/INST/$QT_VER/x86-mingw64-shared/bin/qt.conf
- echo "Plugins = plugins" >> $WORKSPACE/INST/$QT_VER/x86-mingw64-shared/bin/qt.conf
- echo "HostBinaries=xbin" >> $WORKSPACE/INST/$QT_VER/x86-mingw64-shared/bin/qt.conf
- echo "TargetSpec=win32-g++" >> $WORKSPACE/INST/$QT_VER/x86-mingw64-shared/bin/qt.conf
-
+ rm -f $WORKSPACE/INST/$QT_VER/x86-mingw64/bin/qt.conf
+ echo "[Paths]" > $WORKSPACE/INST/$QT_VER/x86-mingw64/bin/qt.conf
+ echo "Prefix=.." >> $WORKSPACE/INST/$QT_VER/x86-mingw64/bin/qt.conf
+ echo "Libraries = lib" >> $WORKSPACE/INST/$QT_VER/x86-mingw64/bin/qt.conf
+ echo "Plugins = plugins" >> $WORKSPACE/INST/$QT_VER/x86-mingw64/bin/qt.conf
+ echo "HostBinaries=xbin" >> $WORKSPACE/INST/$QT_VER/x86-mingw64/bin/qt.conf
+ echo "TargetSpec=win32-g++" >> $WORKSPACE/INST/$QT_VER/x86-mingw64/bin/qt.conf
+ cp -f $WORKSPACE/INST/$QT_VER/x86-mingw64/bin/qt.conf \
+ $WORKSPACE/INST/$QT_VER/x86-mingw64/xbin-x86-linux64/
#
# finally recreate the whole mingw64-shared archive ...
rm -f $WORKSPACE/qt-$QT_VER-x86-mingw64.tgz
cd $WORKSPACE/INST/$QT_VER/x86-mingw64
- cp -f $WORKSPACE/INST/$QT_VER/x86-mingw64/bin/qt.conf \
- $WORKSPACE/INST/$QT_VER/x86-mingw64/xbin-x86-linux64/
tar -zcf $WORKSPACE/qt-$QT_VER-x86-mingw64.tgz .
cd $WORKSPACE/