1
0
Fork 0
dpkg/scripts/t/mock-bin/gcc
Daniel Baumann 1879661313
Adding upstream version 1.22.20.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-20 21:21:00 +02:00

20 lines
241 B
Bash
Executable file

#!/bin/sh
set -e
args="$@"
while [ $# -gt 0 ]; do
opt="$1"
shift
case "$opt" in
-dumpmachine)
echo x86_64-linux-gnu
exit 0
esac
done
# Otherwise fail hard.
echo "$0: unsupported command ($args) in mock wrapper"
exit 1