Revision 9674
Added by Aaron Marcuse-Kubitza over 11 years ago
lib/sh/make.sh | ||
---|---|---|
11 | 11 |
local target_filename="${FUNCNAME%/*}"; echo_vars target_filename |
12 | 12 |
local target="$top_dir/$target_filename"; echo_vars target |
13 | 13 |
local target_stem="${target_filename%.*}"; echo_vars target_stem |
14 |
local _remake="$remake" remake= # don\'t progagate remake to prerequisites
|
|
14 |
local _remake="$remake" remake= |
|
15 | 15 |
EOF |
16 |
)" |
|
16 |
)" # `remake=`: don't progagate remake to prerequisites
|
|
17 | 17 |
|
18 | 18 |
# usage: remaking || check if exists |
19 | 19 |
# cmd line usage: [remake=1] func |
Also available in: Unified diff
bugfix: lib/sh/make.sh: set_make_vars: can't use end-of-line comment in alias because it will comment out whatever is after the alias where it's used. can't just put a newline or ; after the end-of-line comment because the alias's lines will be combined onto one line using ; , so end-of-line comments would not be supported.