repo.or.cz
/
dpkg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Dpkg::Vendor::Debian: Move time64 buildflags feature from future to abi
[dpkg.git]
/
scripts
/
t
/
mock-bin
/
gcc
blob
0174f17bb4b6f161d6e2c53953bdbd4052b1e14e
1
#!/bin/sh
2
3
set -e
4
5
args
=
"$@"
6
7
while
[
$#
-gt
0
];
do
8
opt
=
"
$1
"
9
shift
10
11
case
"
$opt
"
in
12
-dumpmachine
)
13
echo
x86_64-linux-gnu
14
exit
0
15
esac
16
done
17
18
# Otherwise fail hard.
19
echo
"
$0
: unsupported command (
$args
) in mock wrapper"
20
exit
1