|
Lines 10-15
Link Here
|
| 10 |
# staging directory rather than the host system. |
10 |
# staging directory rather than the host system. |
| 11 |
# |
11 |
# |
| 12 |
|
12 |
|
|
|
13 |
# Some scripts pass in --help as a sanity check. Don't try to parse the |
| 14 |
# help text, just print it and exit. |
| 15 |
for i; do |
| 16 |
if [[ $i == --help ]]; then |
| 17 |
pkg-config --help |
| 18 |
exit "$?" |
| 19 |
fi |
| 20 |
done |
| 21 |
|
| 13 |
# |
22 |
# |
| 14 |
# Helper functions. So very helpful. |
23 |
# Helper functions. So very helpful. |
| 15 |
# |
24 |
# |
|
Lines 20-25
Link Here
|
| 20 |
exit 1 |
29 |
exit 1 |
| 21 |
} |
30 |
} |
| 22 |
|
31 |
|
|
|
32 |
|
| 33 |
|
| 23 |
# |
34 |
# |
| 24 |
# Sanity/distro checks |
35 |
# Sanity/distro checks |
| 25 |
# |
36 |
# |