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/imap4d | |
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/imap4d')
-rw-r--r-- | sys/src/cmd/upas/imap4d/mkfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/upas/imap4d/mkfile b/sys/src/cmd/upas/imap4d/mkfile index 4ae435944..af03e1aac 100644 --- a/sys/src/cmd/upas/imap4d/mkfile +++ b/sys/src/cmd/upas/imap4d/mkfile @@ -1,5 +1,4 @@ </$objtype/mkfile -<../mkupas TARG=imap4d @@ -31,3 +30,4 @@ HFILES=\ fns.h\ </sys/src/cmd/mkone +<../mkupas |