DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=29169>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=29169 top level Makefile fails on sinix trying to preprocess .h files Summary: top level Makefile fails on sinix trying to preprocess .h files Product: APR Version: HEAD Platform: Other OS/Version: Other Status: NEW Severity: Normal Priority: Other Component: APR AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] >From an email to [email protected]: cpp on sinix cannot process .h files. This affects the line below in the top level makefile: $(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) export_vars.h | sed -e 's/^\#[^!]*//' | sed -e '/^$$/d' >> $@ Given export_vars.h only contained: apr_month_snames apr_day_snames I changed this line to: cat export_vars.h | sed -e 's/^\#[^!]*//' | sed -e '/^$$/d' >> $@ which got me past this. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
