diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2008-02-13 10:20:38 -0800 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2008-02-13 10:20:38 -0800 |
commit | 914ebf772762511c27b5876267c1c06db824bff1 (patch) | |
tree | bde2f663751bf9b2042b6466f5dc50fbb11e4514 /install-from-cwd.c | |
parent | 88b6ac2ff1093c46b5b8ffa05856dc1157402861 (diff) |
1.0-87741.0-8774
Diffstat (limited to 'install-from-cwd.c')
-rw-r--r-- | install-from-cwd.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/install-from-cwd.c b/install-from-cwd.c index 995637d..fc62058 100644 --- a/install-from-cwd.c +++ b/install-from-cwd.c @@ -344,6 +344,13 @@ static int install_kernel_module(Options *op, Package *p) } else { /* + * make sure the required development tools are present on + * this system before attempting to verify the compiler and + * trying to build a custom kernel interface. + */ + if (!check_development_tools(op, p)) return FALSE; + + /* * make sure that the selected or default system compiler * is compatible with the target kernel; the user may choose * to override the check. @@ -351,13 +358,6 @@ static int install_kernel_module(Options *op, Package *p) if (!check_cc_version(op, p)) return FALSE; /* - * make sure the required development tools are present on - * this system before attempting to verify the compiler and - * trying to build a custom kernel interface. - */ - if (!check_development_tools(op)) return FALSE; - - /* * we do not have a prebuilt kernel interface; thus we'll need * to compile the kernel interface, so determine where the * kernel source files are. @@ -635,6 +635,8 @@ static Package *parse_manifest (Options *op) p->entries[n].flags |= FILE_TYPE_UTILITY_LIB; else if (strcmp(flag, "DOCUMENTATION") == 0) p->entries[n].flags |= FILE_TYPE_DOCUMENTATION; + else if (strcmp(flag, "MANPAGE") == 0) + p->entries[n].flags |= FILE_TYPE_MANPAGE; else if (strcmp(flag, "OPENGL_SYMLINK") == 0) p->entries[n].flags |= FILE_TYPE_OPENGL_SYMLINK; else if (strcmp(flag, "XLIB_SYMLINK") == 0) |