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 27fa3bc6 for ; Fri, 15 Jul 2016 10:09:07 -0500 (EST) Date: Fri, 15 Jul 2016 10:09:07 -0500 (EST) Message-Id: <3890317756709628376.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: Sanitize the environment when calling make(1) to autodetect X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- Sanitize the environment when calling make(1) to autodetect ${CC}. Sevan Janiyan found during testing on AIX that ${CC} could leak in. Modified Files: -------------- mdocml: configure Revision Data ------------- Index: configure =================================================================== RCS file: /home/cvs/mdocml/mdocml/configure,v retrieving revision 1.40 retrieving revision 1.41 diff -Lconfigure -Lconfigure -u -p -r1.40 -r1.41 --- configure +++ configure @@ -34,7 +34,7 @@ echo "config.log: writing..." MANPATH_DEFAULT="/usr/share/man:/usr/X11R6/man:/usr/local/man" OSNAME= -CC=`printf "all:\\n\\t@echo \\\$(CC)\\n" | make -f -` +CC=`printf "all:\\n\\t@echo \\\$(CC)\\n" | env -i make -f -` CFLAGS="-g -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings" LDADD= LDFLAGS= -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv