You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Steve Kunkee <st...@gmail.com> on 2006/04/14 22:01:36 UTC

fix needed in configure script

I downloaded subversion 2.2.0 and built it on HP-UX 11.11. I didn't have the
correct version of neon, and the build failed in an untracable fashion. The
problem is that some lines in the configure script use test -z but don't
quote the shell variable being tested. This problem exists in more places
than the neon checks. These are the lines:

7442:         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
7714:     whole_archive_flag_spec='-z allextract$convenience -z
defaultextract' ;;
10429:         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
14511:         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
14783:    whole_archive_flag_spec_F77='-z allextract$convenience -z
defaultextract' ;;
16989:         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
17261:    whole_archive_flag_spec_GCJ='-z allextract$convenience -z
defaultextract' ;;
19943:      if test -z $svn_allowed_neon_on_system; then
20175:      if test -z $svn_allowed_neon_in_srcdir; then
20266:      if test -z $svn_allowed_neon_on_system; then

Re: fix needed in configure script

Posted by Timo Wendt <tw...@online.de>.
Did you get it compiled in the end?

Am 15.04.2006 um 00:01 schrieb Steve Kunkee:

> I downloaded subversion 2.2.0 and built it on HP-UX 11.11. I didn't  
> have the correct version of neon, and the build failed in an  
> untracable fashion. The problem is that some lines in the configure  
> script use test -z but don't quote the shell variable being tested.  
> This problem exists in more places than the neon checks. These are  
> the lines:
>
> 7442:         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
> 7714:     whole_archive_flag_spec='-z allextract$convenience -z  
> defaultextract' ;;
> 10429:         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
> 14511:         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
> 14783:    whole_archive_flag_spec_F77='-z allextract$convenience -z  
> defaultextract' ;;
> 16989:         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
> 17261:    whole_archive_flag_spec_GCJ='-z allextract$convenience -z  
> defaultextract' ;;
> 19943:      if test -z $svn_allowed_neon_on_system; then
> 20175:      if test -z $svn_allowed_neon_in_srcdir; then
> 20266:      if test -z $svn_allowed_neon_on_system; then
>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: fix needed in configure script

Posted by Garrett Rooney <ro...@electricjellyfish.net>.
On 4/14/06, Steve Kunkee <st...@gmail.com> wrote:
>
> I downloaded subversion 2.2.0 and built it on HP-UX 11.11. I didn't have the
> correct version of neon, and the build failed in an untracable fashion. The
> problem is that some lines in the configure script use test -z but don't
> quote the shell variable being tested. This problem exists in more places
> than the neon checks. These are the lines:
>
> 7442:         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
> 7714:     whole_archive_flag_spec='-z allextract$convenience -z
> defaultextract' ;;
> 10429:         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
> 14511:         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
> 14783:    whole_archive_flag_spec_F77='-z allextract$convenience -z
> defaultextract' ;;
> 16989:         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
> 17261:    whole_archive_flag_spec_GCJ='-z allextract$convenience -z
> defaultextract' ;;
> 19943:      if test -z $svn_allowed_neon_on_system; then
> 20175:      if test -z $svn_allowed_neon_in_srcdir; then
> 20266:      if test -z $svn_allowed_neon_on_system; then

Seems like a simple enough problem, but if you could send in a patch
to the m4 files that are used to generate the configure script, as
opposed to telling us the lines in the generated file, it would be far
more likely to get fixed ;-)

-garrett

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org