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 1d69435e for ; Thu, 12 Jan 2017 10:48:17 -0500 (EST) Date: Thu, 12 Jan 2017 10:48:17 -0500 (EST) Message-Id: <2286021606602155507.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: merge rev. X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- merge rev. 1.55: gcc 6 fix from Alpine Linux Tags: ---- VERSION_1_13 Modified Files: -------------- mdocml: configure Revision Data ------------- Index: configure =================================================================== RCS file: /home/cvs/mdocml/mdocml/configure,v retrieving revision 1.43.2.7 retrieving revision 1.43.2.8 diff -Lconfigure -Lconfigure -u -p -r1.43.2.7 -r1.43.2.8 --- configure +++ configure @@ -147,10 +147,10 @@ ismanual() { singletest() { cat 1>&3 << __HEREDOC__ ${1}${3}: testing... -${COMP} ${3} -o test-${1} test-${1}.c +${COMP} -o test-${1} test-${1}.c ${3} __HEREDOC__ - if ${COMP} ${3} -o "test-${1}" "test-${1}.c" 1>&3 2>&3; then + if ${COMP} -o "test-${1}" "test-${1}.c" ${3} 1>&3 2>&3; then echo "${1}${3}: ${CC} succeeded" 1>&3 else echo "${1}${3}: ${CC} failed with $?" 1>&3 -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv