diff options
author | fanquake <fanquake@gmail.com> | 2020-09-04 10:37:02 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2020-11-14 08:54:24 +0800 |
commit | bd5d9336d9e1c2345d72531adf2027bc4d099d1b (patch) | |
tree | 34b6cc26175dac840ca51dffff227bb4b8bbe271 /depends/packages/qt.mk | |
parent | bfd7e33b4b255c3a5ba14993665e04349c6bdf0a (diff) |
build: don't copy Info.plist.* into mkspec for macOS qt build
We generate our own Info.plist as part of make deploy, and as far as I
can tell, it doesn't seem to have an effect wether these are present
during qt's build.
I also can't find a single mention of the .app plist in the qt code,
whereas there are multiple instances of .lib.
Diffstat (limited to 'depends/packages/qt.mk')
-rw-r--r-- | depends/packages/qt.mk | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/depends/packages/qt.mk b/depends/packages/qt.mk index d86ea10fd0..80cf5f0c55 100644 --- a/depends/packages/qt.mk +++ b/depends/packages/qt.mk @@ -201,8 +201,6 @@ define $(package)_preprocess_cmds patch -p1 -i $($(package)_patch_dir)/drop_lrelease_dependency.patch && \ patch -p1 -i $($(package)_patch_dir)/dont_hardcode_pwd.patch &&\ mkdir -p qtbase/mkspecs/macx-clang-linux &&\ - cp -f qtbase/mkspecs/macx-clang/Info.plist.lib qtbase/mkspecs/macx-clang-linux/ &&\ - cp -f qtbase/mkspecs/macx-clang/Info.plist.app qtbase/mkspecs/macx-clang-linux/ &&\ cp -f qtbase/mkspecs/macx-clang/qplatformdefs.h qtbase/mkspecs/macx-clang-linux/ &&\ cp -f $($(package)_patch_dir)/mac-qmake.conf qtbase/mkspecs/macx-clang-linux/qmake.conf && \ cp -r qtbase/mkspecs/linux-arm-gnueabi-g++ qtbase/mkspecs/bitcoin-linux-g++ && \ |