Finish switch to pattern rules in phase 2 Makefile
All checks were successful
the build was successful

This commit is contained in:
2019-03-11 18:34:11 +01:00
parent f22a025540
commit a2577d9419
7 changed files with 68 additions and 289 deletions

View File

@@ -38,7 +38,7 @@ buildpids=$(
| egrep "[s]h ${0} .*" \
| wc -l
)
if [ $command = "build_into" -o $command = "git_build_into" -o $command = "svn_build_into" ] && [ "$buildpids" -gt 2 ]; then
if [ $command = "build_into" -o $command = "git_build_into" ] && [ "$buildpids" -gt 2 ]; then
debug "build script is already running"
exit 1
fi
@@ -59,12 +59,6 @@ case "$command" in
else
git_build_into
fi ;;
svn_build_into) if [ "${statusdir}/full_build" -nt "${statusdir}/index.cgi" ]; then
debug "discovered flag file, performing full build"
build_into
else
svn_build_into
fi ;;
build_into) build_into ;;
process_file) process_file "$workfile" "$processor" ;;
build_xmlstream) build_xmlstream "$(get_shortname "$workfile")" "$(get_language "$workfile")" ;;