diff options
Diffstat (limited to 'script/handle')
-rwxr-xr-x | script/handle/make/config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/handle/make/config b/script/handle/make/config index 334e333e..1245fe3f 100755 --- a/script/handle/make/config +++ b/script/handle/make/config @@ -148,9 +148,9 @@ handle_dependencies() if [ ! -d "${codedir}" ]; then if [ "${mode}" = "distclean" ] || \ [ "${mode}" = "crossgcc-clean" ]; then - printf "Directory '%s' does not exist; skipping clean" \ + printf "Directory %s doesn't exist; skipping clean\n" \ "${codedir}" 1>&2 - exit 0 + exit 0 fi ./update project trees "${project}" "${target}" || \ fail "handle_dependencies: can't fetch ${project}/${target}" |