mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
gdk-pixbuf: check for empty $out in setup-hook.sh. Closes #2818
This commit is contained in:
parent
a4f9b9c8b5
commit
421ce6439c
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
findGdkPixbufLoaders() {
|
||||
|
||||
if [ -z "$IN_NIX_SHELL" ]; then
|
||||
if [ -n "$out" ] && [ -z "$IN_NIX_SHELL" ]; then
|
||||
|
||||
# set pixbuf loaders.cache for this package
|
||||
|
||||
|
|
Loading…
Reference in a new issue