14 lines
370 B
Plaintext
14 lines
370 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# SPDX-License-Identifier: MIT
|
||
|
#
|
||
|
|
||
|
set -e
|
||
|
|
||
|
export GDK_PIXBUF_MODULEDIR=$D${libdir}/gdk-pixbuf-2.0/2.10.0/loaders
|
||
|
export GDK_PIXBUF_FATAL_LOADER=1
|
||
|
|
||
|
PSEUDO_UNLOAD=1 ${binprefix}qemuwrapper -L $D $D${libdir}/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders \
|
||
|
>$GDK_PIXBUF_MODULEDIR/../loaders.cache && \
|
||
|
sed -i -e "s:$D::g" $GDK_PIXBUF_MODULEDIR/../loaders.cache
|