After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 318070 - installation with DESTDIR is not supported
installation with DESTDIR is not supported
Status: RESOLVED FIXED
Product: seahorse
Classification: Applications
Component: general
unspecified
Other other
: Normal normal
: ---
Assigned To: Seahorse Maintainer
Seahorse Maintainer
Depends on:
Blocks:
 
 
Reported: 2005-10-06 00:33 UTC by Andrey Panov
Modified: 2005-10-12 15:57 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Patch (510 bytes, patch)
2005-10-06 18:01 UTC, Stef Walter
committed Details | Review

Description Andrey Panov 2005-10-06 00:33:36 UTC
Installation with DESTDIR is not supported:

make[2]: Entering directory `/usr/local/src/seahorse-0.8/agent'
/bin/sh ../mkinstalldirs /var/tmp/packages/opt/gnome2/bin
 /bin/sh ../libtool  --mode=install /usr/bin/ginstall -c  seahorse-agent
/var/tmp/packages/opt/gnome2/bin/seahorse-agent
libtool: install: warning: `../libseahorse/libseahorse-internal.la' has not been
installed in `/opt/gnome2/lib'
/usr/bin/ginstall -c .libs/seahorse-agent
/var/tmp/packages/opt/gnome2/bin/seahorse-agent
make  install-exec-hook
make[3]: Entering directory `/usr/local/src/seahorse-0.8/agent'
chmod u+s /opt/gnome2/bin/seahorse-agent
chmod: невозможно получить доступ к `/opt/gnome2/bin/seahorse-agent': No such
file or directory
make[3]: *** [install-exec-hook] Ошибка 1
make[3]: Leaving directory `/usr/local/src/seahorse-0.8/agent'

Should be 

chmod u+s $DESTDIR/opt/gnome2/bin/seahorse-agent
Comment 1 Adam Schreiber 2005-10-06 00:58:00 UTC
Use prefix instead of destdir.

./configure --prefix=$DESTDIR/opt/gnome2
Comment 2 Stef Walter 2005-10-06 18:01:19 UTC
Created attachment 53124 [details] [review]
Patch

Does this patch fix the problem? LMK.
Comment 3 Andrey Panov 2005-10-07 00:43:24 UTC
automake fails for me I think due to version mismatch, I have automake-1.9.5. I
think the patch is trivial and it should fix the bug.
Comment 4 Stef Walter 2005-10-12 15:57:38 UTC
2005-10-12  Nate Nielsen  <nielsen@memberwebs.com>

	* agent/Makefile.am: Be able to install in an alternat $DESTIR
	(bug #318070)