[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Linking of libsvnjavahl-1.jnilib does not use DESTDIR

From: <petesea_at_bigfoot.com>
Date: Tue, 17 Jun 2008 11:13:06 -0700 (PDT)

I believe there's a bug in configure.ac (or configure.in) for Darwin (OSX)
when a symlink from libsvnjavahl-1.dylib to linsvnjavahl-1.jnilib is
created... actually there's 2 bugs:

   1) the symlink is created as an absolute link rather then a relative
link

   2) the symlink is created based on the installation path rather then the
$DESTDIR/installation path.

I'm not sure if configure.ac is the best place for this change, but here's
a diff based on configure.ac from subversion-1.5.0-rc9 which corrects both
problems:

   687c687
   < INSTALL_EXTRA_JAVAHL_LIB='ln -sf $(libdir)/libsvnjavahl-1.dylib $(libdir)/libsvnjavahl-1.jnilib'
   ---
> INSTALL_EXTRA_JAVAHL_LIB='ln -sf libsvnjavahl-1.dylib $(DESTDIR)$(libdir)/libsvnjavahl-1.jnilib'

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-06-17 20:14:51 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.