diff --git a/src/build/ac.jam b/src/build/ac.jam index 4422fd473..c8a890291 100644 --- a/src/build/ac.jam +++ b/src/build/ac.jam @@ -25,13 +25,13 @@ rule generate-include ( target : sources * : properties * ) { local header = [ property.select : $(properties) ] ; print.output $(target) ; - print.text "#include <$(header:G=)>" ; + print.text "#include <$(header:G=)>" : true ; } rule generate-main ( target : sources * : properties * ) { print.output $(target) ; - print.text "int main() {}" ; + print.text "int main() {}" : true ; } rule find-include-path ( properties : header : provided-path ? )