mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-20 13:54:36 +01:00
Makefile: work with shasum -a as well as sha256sum.
At least on my Ubuntu box, they're compatible. If they're not, we need to disable regeneration altogether. Fixes: #4075 Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
d9ba39d2cb
commit
4e67b4fd03
2 changed files with 13 additions and 3 deletions
4
Makefile
4
Makefile
|
@ -264,9 +264,9 @@ endif
|
|||
# Git doesn't maintain timestamps, so we only regen if sources actually changed:
|
||||
# We place the SHA inside some generated files so we can tell if they need updating.
|
||||
# Usage: $(call SHA256STAMP_CHANGED)
|
||||
SHA256STAMP_CHANGED = [ x"`sed -n 's/.*SHA256STAMP://p' $@ 2>/dev/null`" != x"`cat $(sort $(filter-out FORCE,$^)) | sha256sum | cut -c1-64`" ]
|
||||
SHA256STAMP_CHANGED = [ x"`sed -n 's/.*SHA256STAMP://p' $@ 2>/dev/null`" != x"`cat $(sort $(filter-out FORCE,$^)) | $(SHA256SUM) | cut -c1-64`" ]
|
||||
# Usage: $(call SHA256STAMP,commentprefix)
|
||||
SHA256STAMP = echo '$(1) SHA256STAMP:'`cat $(sort $(filter-out FORCE,$^)) | sha256sum | cut -c1-64` >> $@
|
||||
SHA256STAMP = echo '$(1) SHA256STAMP:'`cat $(sort $(filter-out FORCE,$^)) | $(SHA256SUM) | cut -c1-64` >> $@
|
||||
|
||||
# generate-wire.py --page [header|impl] hdrfilename wirename < csv > file
|
||||
%_wiregen.h: %_wire.csv $(WIRE_GEN_DEPS)
|
||||
|
|
12
configure
vendored
12
configure
vendored
|
@ -83,7 +83,7 @@ check_command()
|
|||
shift 1
|
||||
|
||||
echo -n "checking for $name... "
|
||||
if "$@" 2>/dev/null; then
|
||||
if "$@" >/dev/null 2>&1; then
|
||||
echo 'found'
|
||||
return 0
|
||||
fi
|
||||
|
@ -366,6 +366,15 @@ else
|
|||
HAVE_PYTHON3_MAKO=0
|
||||
fi
|
||||
|
||||
if echo | check_command sha256sum sha256sum; then
|
||||
SHA256SUM=sha256sum
|
||||
elif echo | check_command "shasum -a 256" shasum -a 256; then
|
||||
SHA256SUM="shasum -a 256"
|
||||
else
|
||||
echo "*** We need sha256sum or shasum -a 256!" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Now we can finally set our warning flags
|
||||
if [ -z ${CWARNFLAGS+x} ]; then
|
||||
CWARNFLAGS=$(default_cwarnflags "$COPTFLAGS" \
|
||||
|
@ -392,6 +401,7 @@ add_var STATIC "$STATIC"
|
|||
add_var ASAN "$ASAN"
|
||||
add_var TEST_NETWORK "$TEST_NETWORK"
|
||||
add_var HAVE_PYTHON3_MAKO "$HAVE_PYTHON3_MAKO"
|
||||
add_var SHA256SUM "$SHA256SUM"
|
||||
|
||||
# Hack to avoid sha256 name clash with libwally: will be fixed when that
|
||||
# becomes a standalone shared lib.
|
||||
|
|
Loading…
Add table
Reference in a new issue