glib: fix pre phases

*Phases are strings, not arrays.

authored by José Romildo Malaquias and committed by Orivej Desh d51897e4 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"