11 lines
297 B
Plaintext
11 lines
297 B
Plaintext
|
#!/bin/bash
|
||
|
if test -z "$PACKAGE" ; then
|
||
|
echo "This is a hook file for upstream-collect.sh. It cannot be called separately."
|
||
|
exit 255
|
||
|
fi
|
||
|
|
||
|
# Hack for compiz that has a non-standard po location
|
||
|
if test $DOMAIN = compiz ; then
|
||
|
RPMPODIR=$(echo $RPMPKGDIR/BUILD/compiz/compiz-*/${DIR#*/})
|
||
|
fi
|