/etc/gquilt.d/qbsfe.sh is in gquilt 0.25-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | #! /bin/bash
# This script is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
if [ $# -lt 2 ]
then
echo "Usage: qbsfe.sh <patchfns> <cmd> [<arg> ...]" >&2
exit 1
fi
if [ -z "$QUILTRC" ]
then
for QUILTRC in $HOME/.quiltrc /etc/quilt.quiltrc; do
[ -e $QUILTRC ] && break
done
export QUILTRC
fi
QBSFE_PATCHFNS=$1
shift
# Read in library functions
if ! [ -r $QBSFE_PATCHFNS ]
then
echo "Cannot read library \"$QBSFE_PATCHFNS\"" >&2
exit 1
fi
. $QBSFE_PATCHFNS
QBSFE_CMD=$1
shift
$QBSFE_CMD "$@"
|