Return-Path: Delivered-To: apmail-httpd-bugs-archive@www.apache.org Received: (qmail 78416 invoked from network); 12 Nov 2003 12:41:03 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 12 Nov 2003 12:41:03 -0000 Received: (qmail 14154 invoked by uid 500); 12 Nov 2003 12:41:00 -0000 Delivered-To: apmail-httpd-bugs-archive@httpd.apache.org Received: (qmail 14133 invoked by uid 500); 12 Nov 2003 12:41:00 -0000 Mailing-List: contact bugs-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: "Apache HTTPD Bugs Notification List" Delivered-To: mailing list bugs@httpd.apache.org Received: (qmail 14117 invoked from network); 12 Nov 2003 12:41:00 -0000 Received: from unknown (HELO exchange.sun.com) (192.18.33.10) by daedalus.apache.org with SMTP; 12 Nov 2003 12:41:00 -0000 Received: (qmail 21255 invoked by uid 50); 12 Nov 2003 12:41:03 -0000 Date: 12 Nov 2003 12:41:03 -0000 Message-ID: <20031112124103.21254.qmail@nagoya.betaversion.org> From: bugzilla@apache.org To: bugs@httpd.apache.org Cc: Subject: DO NOT REPLY [Bug 24643] New: - [patch] build failed on smp system: No rule to make target `exports.c' X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . 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: bugs@httpd.apache.org ReportedBy: svd@altlinux.ru 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: bugs-unsubscribe@httpd.apache.org For additional commands, e-mail: bugs-help@httpd.apache.org