"Bertrand Jacquin" <beber.mailing@xxxxxxxxx> writes: > Sorry, maybe a C code beginner question but while you define > NO_H_OPTION_IN_GREP in Makefile, why don't use a build time ``if'' > instead of a runtime one ? > > Like : > > #if NO_H_OPTION_IN_GREP > push_arg("/dev/null"); > #else > push_arg("-H"); > push_arg("--"); > #fi Exactly because I wanted to avoid conditional compilation using C preprocessor directive (#if). - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html