Revision 12878
Added by Aaron Marcuse-Kubitza almost 11 years ago
trunk/lib/runscripts/table.run | ||
---|---|---|
51 | 51 |
{ |
52 | 52 |
begin_target |
53 | 53 |
if remaking; then in_top_dir rm -f header.csv; fi # remake it |
54 |
"$top_dir/../run" schema/make |
|
54 |
make --directory="$top_dir/.." schema # works w/ old-style srcs w/o ../run |
|
55 |
#"$top_dir/../run" schema/make # uncomment once everything is new-style |
|
55 | 56 |
is_view="$is_view" table_make_install ${_remake:+re}install # just the table |
56 | 57 |
} |
57 | 58 |
|
Also available in: Unified diff
bugfix: lib/runscripts/table.run: schema/make calls: need to use `make schema` instead because old-style datasources don't have a top-level runscript (the absence of this identifies them as old-style so inputs/input.Makefile works correctly)