Follow symlinks while building manifest.txt
This commit is contained in:
parent
2e67bce822
commit
64b677d235
2
Makefile
2
Makefile
|
@ -148,7 +148,7 @@ $(OUT_DIR)/release.env: | $(OUT_DIR)
|
||||||
echo 'GIT_TIMESTAMP=$(GIT_TIMESTAMP)' >> $(OUT_DIR)/release.env
|
echo 'GIT_TIMESTAMP=$(GIT_TIMESTAMP)' >> $(OUT_DIR)/release.env
|
||||||
|
|
||||||
$(OUT_DIR)/manifest.txt: | $(OUT_DIR)
|
$(OUT_DIR)/manifest.txt: | $(OUT_DIR)
|
||||||
find $(OUT_DIR) \
|
find -L $(OUT_DIR) \
|
||||||
-type f \
|
-type f \
|
||||||
-not -path "$(OUT_DIR)/manifest.txt" \
|
-not -path "$(OUT_DIR)/manifest.txt" \
|
||||||
-exec openssl sha256 -r {} \; \
|
-exec openssl sha256 -r {} \; \
|
||||||
|
|
Loading…
Reference in New Issue