Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #33394 from romildo/fix.glib

glib: preFixupPhases should be a string, and not an array

authored by Orivej Desh and committed by GitHub aa3fa39e 1531fd73

+2 -3
+2 -3
pkgs/development/libraries/glib/setup-hook.sh
··· 11 11 glibPreInstallPhase() { 12 12 installFlagsArray+=("gsettingsschemadir=${!outputLib}/share/gsettings-schemas/$name/glib-2.0/schemas/") 13 13 } 14 - preInstallPhases+=(glibPreInstallPhase) 14 + preInstallPhases+=" glibPreInstallPhase" 15 15 16 16 glibPreFixupPhase() { 17 17 # Move gschemas in case the install flag didn't help ··· 22 22 23 23 addToSearchPath GSETTINGS_SCHEMAS_PATH "${!outputLib}/share/gsettings-schemas/$name" 24 24 } 25 - preFixupPhases+=(glibPreFixupPhase) 26 - 25 + preFixupPhases+=" glibPreFixupPhase"