tools/mkfsdata.pl was still generating the old-style apps/include inclusion paths

This commit is contained in:
Gregory Nutt 2016-08-23 08:00:11 -06:00
parent 31b777a98d
commit 3b6befcd16
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ opendir(DIR, ".");
@files = grep { !/^\./ && !/(CVS|~)/ } readdir(DIR);
closedir(DIR);
print(OUTPUT "#include <apps/netutils/httpd.h>\n\n");
print(OUTPUT "#include \"netutils/httpd.h\"\n\n");
print(OUTPUT "#ifndef NULL\n#define NULL 0\n#endif\n\n");
foreach $file (@files) {