From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (fantadrom.bsd.lv [local]) by fantadrom.bsd.lv (OpenSMTPD) with ESMTPA id 2f6094d3 for ; Wed, 10 Aug 2016 07:50:54 -0500 (EST) Date: Wed, 10 Aug 2016 07:50:54 -0500 (EST) Message-Id: <5855737272966685050.enqueue@fantadrom.bsd.lv> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: schwarze@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: When trying to figure out which C compiler make(1) wants to use, X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- When trying to figure out which C compiler make(1) wants to use, pass it the POSIX -s option. On most systems, this won't make a difference, but Bdale Garbee reported that the make(1) on his Debian system, most likely some version of gmake, breaks Makefile.local by printing some 'entering directory' messages. I failed to reproduce and Bdale didn't report back, but judging from gmake source code, this is likely to help and unlikely to do harm elsewhere. Modified Files: -------------- mdocml: configure Revision Data ------------- Index: configure =================================================================== RCS file: /home/cvs/mdocml/mdocml/configure,v retrieving revision 1.50 retrieving revision 1.51 diff -Lconfigure -Lconfigure -u -p -r1.50 -r1.51 --- configure +++ configure @@ -37,7 +37,7 @@ MANPATH_DEFAULT="/usr/share/man:/usr/X11 OSNAME= UTF8_LOCALE= -CC=`printf "all:\\n\\t@echo \\\$(CC)\\n" | env -i make -f -` +CC=`printf "all:\\n\\t@echo \\\$(CC)\\n" | env -i make -sf -` CFLAGS="-g -W -Wall -Wmissing-prototypes -Wstrict-prototypes -Wwrite-strings" CFLAGS="${CFLAGS} -Wno-unused-parameter" LDADD= -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv