Skip to content

Commit 09093a3

Browse files
committed
removed usage of emptyString from dmake
1 parent 0636202 commit 09093a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/dmake/dmake.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ int main(int argc, char **argv)
570570
fout << "# To compile with rules, use 'make HAVE_RULES=yes'\n";
571571
makeConditionalVariable(fout, "HAVE_RULES", "");
572572

573-
makeMatchcompiler(fout, emptyString, emptyString);
573+
makeMatchcompiler(fout, "", "");
574574

575575
// avoid undefined variable
576576
fout << "ifndef CPPFLAGS\n"
@@ -839,7 +839,7 @@ int main(int argc, char **argv)
839839
compilefiles(fout, libfiles_prio, "${INCLUDE_FOR_LIB}");
840840
compilefiles(fout, clifiles, "${INCLUDE_FOR_CLI}");
841841
compilefiles(fout, testfiles, "${INCLUDE_FOR_TEST}");
842-
compilefiles(fout, extfiles, emptyString);
842+
compilefiles(fout, extfiles, "");
843843
compilefiles(fout, toolsfiles, "${INCLUDE_FOR_LIB}");
844844

845845
write_ossfuzz_makefile(libfiles_prio, extfiles);

0 commit comments

Comments
 (0)