DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24643>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24643 [patch] build failed on smp system: No rule to make target `exports.c' Summary: [patch] build failed on smp system: No rule to make target `exports.c' Product: Apache httpd-2.0 Version: 2.0.48 Platform: PC OS/Version: Linux Status: NEW Severity: Normal Priority: Other Component: Build AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] On SMP systems build can fail because of not full dependencies in Makefile with next error: gawk -f /home/svd/RPM/BUILD/httpd-2.0.48/build/make_var_export.awk `cat export_files` > export_vars.h make[2]: *** No rule to make target `exports.c', needed by `httpd.exp'. Stop. To fix it I'm using this patch: --- httpd-2.0.48/server/Makefile.in~ 2003-03-11 17:41:55 +0200 +++ httpd-2.0.48/server/Makefile.in 2003-11-12 13:57:18 +0200 @@ -64,6 +64,8 @@ $(top_builddir)/server/exports.c: export_files $(AWK) -f $(top_srcdir)/build/make_exports.awk `cat $?` > $@ +exports.c: $(top_builddir)/server/exports.c + export_vars.h: export_files $(AWK) -f $(top_srcdir)/build/make_var_export.awk `cat $?` > $@ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
