about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2020-05-21 08:52:20 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2020-05-21 08:52:20 -0400
commit42b203573072bc0df6285c1a3dd458eaaffd84dd (patch)
tree6205e32a0bd805af7e239b4e20831cc23088b2d0 /pkgs/development/tools
parent26f635d39aa69b740c938349f8034b281a6663ca (diff)
downloadnixlib-42b203573072bc0df6285c1a3dd458eaaffd84dd.tar
nixlib-42b203573072bc0df6285c1a3dd458eaaffd84dd.tar.gz
nixlib-42b203573072bc0df6285c1a3dd458eaaffd84dd.tar.bz2
nixlib-42b203573072bc0df6285c1a3dd458eaaffd84dd.tar.lz
nixlib-42b203573072bc0df6285c1a3dd458eaaffd84dd.tar.xz
nixlib-42b203573072bc0df6285c1a3dd458eaaffd84dd.tar.zst
nixlib-42b203573072bc0df6285c1a3dd458eaaffd84dd.zip
pkg-config: If building vanilla version, can run original tests
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/misc/pkg-config/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/misc/pkg-config/default.nix b/pkgs/development/tools/misc/pkg-config/default.nix
index ceca1cf590c0..2cecb25eeeec 100644
--- a/pkgs/development/tools/misc/pkg-config/default.nix
+++ b/pkgs/development/tools/misc/pkg-config/default.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
     ++ optional stdenv.isCygwin ./2.36.3-not-win32.patch;
 
   # These three tests fail due to a (desired) behavior change from our ./requires-private.patch
-  postPatch = ''
+  postPatch = if vanilla then null else ''
     rm -f check/check-requires-private check/check-gtk check/missing
   '';