diff options
author | Paul Smith <psmith@gnu.org> | 1999-07-09 22:55:44 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1999-07-09 22:55:44 +0000 |
commit | 8df9d5402017dbc6af67e9baa1c0baac5c59f4ff (patch) | |
tree | 20eb661a53f89abae673007470e9b1e5a569689e /dep.h | |
parent | 9035aa27b7485bfdc12f8c577208a20a8b3747b6 (diff) | |
download | gunmake-8df9d5402017dbc6af67e9baa1c0baac5c59f4ff.tar.gz |
* Fixed error rebuilding makefiles with -j>1
* Fixed problem with job pipe and -j>1 when waiting on -l loads.
Diffstat (limited to 'dep.h')
-rw-r--r-- | dep.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -38,7 +38,8 @@ struct dep struct dep *next; char *name; struct file *file; - int changed; + unsigned short changed; + unsigned short deferred; /* Only used in update_goal_chain(). */ }; |