Skip to content

Commit 47bf559

Browse files
committedMar 1, 2018
Merge branch 'staging' into glibc-2.27
2 parents f50d0f1 + 1ad37a8 commit 47bf559

File tree

3 files changed

+25
-13
lines changed

3 files changed

+25
-13
lines changed
 
+21-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,27 @@
1-
Partially reverts <https://codereview.qt-project.org/#/c/140954/>.
2-
3-
diff --git i/mkspecs/features/qt_module.prf w/mkspecs/features/qt_module.prf
4-
index bb28af97..36bb6483 100644
5-
--- i/mkspecs/features/qt_module.prf
6-
+++ w/mkspecs/features/qt_module.prf
7-
@@ -245,7 +245,7 @@ load(qt_installs)
1+
diff --git a/mkspecs/features/qt_module.prf b/mkspecs/features/qt_module.prf
2+
index e6a0d97f1a..b50ce77d51 100644
3+
--- a/mkspecs/features/qt_module.prf
4+
+++ b/mkspecs/features/qt_module.prf
5+
@@ -266,7 +266,7 @@ load(qt_installs)
86
load(qt_targets)
9-
7+
108
# this builds on top of qt_common
119
-!internal_module:!lib_bundle:if(unix|mingw) {
1210
+!internal_module:if(unix|mingw) {
1311
CONFIG += create_pc
1412
QMAKE_PKGCONFIG_DESTDIR = pkgconfig
15-
host_build: \
13+
host_build: \
14+
diff --git a/mkspecs/features/qt_module_headers.prf b/mkspecs/features/qt_module_headers.prf
15+
index 62b88c6fe2..f302f1e202 100644
16+
--- a/mkspecs/features/qt_module_headers.prf
17+
+++ b/mkspecs/features/qt_module_headers.prf
18+
@@ -102,8 +102,7 @@ git_build: \
19+
else: \
20+
INC_PATH = $$MODULE_BASE_INDIR
21+
include($$INC_PATH/include/$$MODULE_INCNAME/headers.pri, "", true)
22+
-!lib_bundle: \ # Headers are embedded into the bundle, so don't install them separately.
23+
- CONFIG += qt_install_headers
24+
+CONFIG += qt_install_headers
25+
26+
alien_syncqt: return()
27+

Diff for: ‎pkgs/tools/text/gawk/default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ let
1919
inherit (stdenv.lib) optional;
2020
in
2121
stdenv.mkDerivation rec {
22-
name = "gawk-4.2.0";
22+
name = "gawk-4.2.1";
2323

2424
src = fetchurl {
2525
url = "mirror://gnu/gawk/${name}.tar.xz";
26-
sha256 = "1wm9lqj77y7xz07zi0n187aqm8zavzxzpm1j53ahxz81q0qwvwyl";
26+
sha256 = "0lam2zf3n7ak4pig8w46lhx9hzx50kj2v2yj1616mm26wy2rf4fi";
2727
};
2828

2929
# When we do build separate interactive version, it makes sense to always include man.

Diff for: ‎pkgs/tools/typesetting/tex/texlive/bin.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ inherit (core-big) metafont metapost luatex xetex;
161161
core-big = stdenv.mkDerivation { #TODO: upmendex
162162
name = "texlive-core-big.bin-${version}";
163163

164-
inherit (common) src patches;
164+
inherit (common) src;
165165

166166
hardeningDisable = [ "format" ];
167167

@@ -176,7 +176,7 @@ core-big = stdenv.mkDerivation { #TODO: upmendex
176176
# http://tex.stackexchange.com/questions/97999/when-to-use-luajittex-in-favour-of-luatex
177177
];
178178

179-
patches = [ ./luatex-gcc7.patch ];
179+
patches = common.patches ++ [ ./luatex-gcc7.patch ];
180180

181181
configureScript = ":";
182182

0 commit comments

Comments
 (0)
Please sign in to comment.