11 lines
415 B
Bash
Executable File
11 lines
415 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Ensure GIO_MODULE_DIR is not set so we don't load random things
|
|
# which may then get deleted (or their dependencies) and potentially segfault
|
|
/usr/bin/qemu-${XBPS_TARGET_QEMU_MACHINE}-static ${GIR_EXTRA_OPTIONS} \
|
|
-L ${XBPS_CROSS_BASE} \
|
|
-E LD_LIBRARY_PATH="${XBPS_CROSS_BASE}/usr/lib:.libs:${GIR_EXTRA_LIBS_PATH}" \
|
|
-E GI_TYPELIB_SYSROOT="${XBPS_CROSS_BASE}" \
|
|
-U GIO_MODULE_DIR \
|
|
"$@"
|