diff options
author | Ori Bernstein <ori@eigenstate.org> | 2020-11-22 11:36:23 -0800 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2020-11-22 11:36:23 -0800 |
commit | bd6747ccd0aa564923460d27179592b4e185bfa1 (patch) | |
tree | 37510ef17d1f958813f11b0412f9255eb28d771a /sys/src/cmd/upas/binscripts | |
parent | a041c90431c5987496ac1d5de4f330f70fd2966f (diff) |
upas/*: fix mkfile issues (thanks amavect)
Fixes 3 issues in our upas mkfiles:
- mk/mkfile and send/mkfile were rebuilding
only the rfc822.tab.$O, even though the
header also needed to be rebuilt.
- CLEANFILES had a pattern that would not
get expanded.
- Third, ../upas/mkfile was being included
in the wrong place and making the wrong
rule default.
Diffstat (limited to 'sys/src/cmd/upas/binscripts')
-rw-r--r-- | sys/src/cmd/upas/binscripts/mkfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/src/cmd/upas/binscripts/mkfile b/sys/src/cmd/upas/binscripts/mkfile index 1edc72051..88cdcf573 100644 --- a/sys/src/cmd/upas/binscripts/mkfile +++ b/sys/src/cmd/upas/binscripts/mkfile @@ -1,5 +1,4 @@ </$objtype/mkfile -<../mkupas RCFILES=\ isspam\ @@ -27,3 +26,5 @@ nuke:V: $BIN/%: %.rc cp $stem.rc $BIN/$stem + +<../mkupas |