mirror of
https://github.com/ElementsProject/lightning.git
synced 2026-08-17 13:06:36 +02:00
10 lines
233 B
Text
10 lines
233 B
Text
|
|
#! /bin/sh
|
||
|
|
# Version of CC which only supports -dumpmachine (for external/Makefile), and fails otherwise
|
||
|
|
set -e
|
||
|
|
|
||
|
|
if [ x"$*" = x"-dumpmachine" ]; then
|
||
|
|
CC="$(grep ^CC= config.vars | cut -d= -f2-)"
|
||
|
|
exec ${CC:=cc} "$@"
|
||
|
|
fi
|
||
|
|
exit 1
|