From 5f496cb248a05de0425f67c103037b4c149f9d3d Mon Sep 17 00:00:00 2001 From: Dave Parker Date: Wed, 10 Jan 2018 00:03:28 +0000 Subject: [PATCH] Makefile fix: distribution building still works when "bin" is missing, e.g., because empty directory not checked out from git. --- prism/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prism/Makefile b/prism/Makefile index 31868044..9e095472 100644 --- a/prism/Makefile +++ b/prism/Makefile @@ -505,7 +505,7 @@ dist_tidy: @find . \( -type d -o -type s \) -exec chmod 755 {} \; @find . -type f \( -name '*.sh' -o -name '*.so' -o -name '*.dll' \) -exec chmod 755 {} \; @find examples -type f -name 'auto' -exec chmod 755 {} \; || test 1 - @find bin -type f -exec chmod 755 {} \; + @find bin -type f -exec chmod 755 {} \; || test 1 @find src/bin -type f -exec chmod 755 {} \; @find etc/scripts -type f -exec chmod 755 {} \;