diff options
author | Joerg Koenig <Joerg.Koenig@techsat.com> | 2019-05-12 19:21:12 (GMT) |
---|---|---|
committer | Joerg Koenig <Joerg.Koenig@techsat.com> | 2019-05-12 19:21:12 (GMT) |
commit | 62cd85cf2e14c4f451130976d27697b625959d09 (patch) | |
tree | 72b135ffb06e559030ff24737a1f7b12f4727361 /Makefile | |
parent | ffaab218da87c2f10df94b03dc55ffe54c3a75f5 (diff) | |
download | Qt-62cd85cf2e14c4f451130976d27697b625959d09.zip Qt-62cd85cf2e14c4f451130976d27697b625959d09.tar.gz Qt-62cd85cf2e14c4f451130976d27697b625959d09.tar.bz2 |
Fixed working directories
Change-Id: I5c1029bd0ee0a44754c714c2ef4f1f8170cff074
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -68,11 +68,11 @@ qt.x86-linux64.shared: cd $(LOCAL_BUILD_PATH) && \ tar -xJf $(TOP)/SOURCE/qt-everywhere-src-$(VERSION).tar.xz cd $(LOCAL_BUILD_PATH)/qt-everywhere-src-$(VERSION) && \ - gcc --version && \ rm -f config.cache && \ export LDFLAGS=$(CXX_LDFLAGS) && \ bash ./configure \ -recheck-all \ + -platfrom linux-clang \ -prefix $(LOCAL_INST_PATH)/qt-$(VERSION)-shared \ -release \ -opensource \ @@ -93,7 +93,7 @@ qt.x86-linux64.shared: -fontconfig \ -system-freetype \ -confirm-license && \ - make -j$(JOBS) CC=$(CC) CXX=$(CXX) && \ + make -j$(JOBS) && \ make -j$(JOBS) install cd $(LOCAL_INST_PATH)/qt-$(VERSION)-shared && \ tar -zcf $(TOP)/qt-$(VERSION)-shared-$(ARCH).tgz ./ @@ -110,6 +110,7 @@ qt.x86-linux64.static: export LDFLAGS=$(CXX_LDFLAGS) && \ bash ./configure \ -recheck-all \ + -platfrom linux-clang \ -prefix $(LOCAL_INST_PATH)/qt-$(VERSION)-static \ -static \ -release \ @@ -131,7 +132,7 @@ qt.x86-linux64.static: -fontconfig \ -system-freetype \ -confirm-license && \ - make -j$(JOBS) CC=$(CC) CXX=$(CXX) LFLAGS=$(CXX_LDFLAGS) && \ + make -j$(JOBS) && \ make -j$(JOBS) install cd $(LOCAL_INST_PATH)/qt-$(VERSION)-static && \ tar -zcf $(TOP)/qt-$(VERSION)-static-$(ARCH).tgz ./ |