2007-05-21 04:41:15 +02:00
|
|
|
#!/bin/sh
|
|
|
|
if test -d /opt/testing/lib64; then
|
2017-11-01 13:52:45 +01:00
|
|
|
LD_LIBRARY_PATH=/opt/testing/lib64
|
2007-05-21 04:41:15 +02:00
|
|
|
else
|
2017-11-01 13:52:45 +01:00
|
|
|
LD_LIBRARY_PATH=/opt/testing/lib
|
2007-05-21 04:41:15 +02:00
|
|
|
fi
|
2010-01-27 18:29:21 +01:00
|
|
|
PATH="/opt/testing/bin:$PATH"
|
|
|
|
rpmlintdir="/opt/testing/share/rpmlint"
|
|
|
|
PYTHONPATH="$rpmlintdir"
|
2017-11-01 13:52:45 +01:00
|
|
|
LC_aLL=C.utf8
|
|
|
|
export PYTHONPATH LD_LIBRARY_PATH LC_ALL
|
2017-09-30 23:21:37 +02:00
|
|
|
exec /opt/testing/bin/python3 -u -O "$rpmlintdir"/rpmlint.pyc -C "$rpmlintdir" -f "$rpmlintdir"/rpmlint-mini.config "$@"
|