Home | History | Annotate | Download | only in 3.6.1

Lines Matching refs:output

4 # output and return value into a file and then process it to later on.
6 # This is meant to be used in a makefile, specifically to allow for the output
13 # my_target_output := $(OUT_DIR)/lint-output.txt
47 local output="${1-}"; shift || fatal "missing argument: output"
53 # Run the command specified by the rest of arguments ("$@") and save output
56 "$@" >"${output}" 2>&1 || echo "$?" >"${retval}"
64 tail -n 5 "$output" | sed -e "s/^/${module}: /"
66 # Print the entire output on failure.
67 cat "$output" | sed -e "s/^/${module}: /"