Subject: Re: pkg/29963
To: None <pkg-manager@netbsd.org, gnats-admin@netbsd.org,>
From: Roland Illig <roland.illig@gmx.de>
List: pkgsrc-bugs
Date: 06/06/2005 20:07:02
The following reply was made to PR pkg/29963; it has been noted by GNATS.

From: Roland Illig <roland.illig@gmx.de>
To: gnats-bugs@netbsd.org
Cc: 
Subject: Re: pkg/29963
Date: Mon, 06 Jun 2005 22:06:43 +0200

 I have confirmed myself that the bug still exist. The buggy part is not 
 pkgsrc but the GNU configure scripts.
 
 #! /bin/sh
 
 printargs() {
 	for i in "$@"; do
 		echo "<$i>"
 	done
 }
 
 cppflags=-Dulong\ long
 cc="printargs"
 
 ac_cpp='$cc $cppflags'
 
 eval $ac_cpp
 # eval "$ac_cpp" would not make a difference
 
 
 This pattern occurs very often in GNU configure scripts. I don't know 
 yet how we can fix it.
 
 Roland