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 505364 - install nautilus extension in the right spot
install nautilus extension in the right spot
Status: RESOLVED FIXED
Product: gnome-control-center
Classification: Core
Component: general
unspecified
Other Linux
: Normal normal
: ---
Assigned To: Control-Center Maintainers
Control-Center Maintainers
Depends on:
Blocks:
 
 
Reported: 2007-12-24 06:12 UTC by Matthias Clasen
Modified: 2008-01-25 19:12 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
patch (1.41 KB, patch)
2007-12-24 06:13 UTC, Matthias Clasen
none Details | Review
Use pkgconfig to find nautilus extension dir. (1.56 KB, patch)
2008-01-11 17:34 UTC, Damien Carbery
committed Details | Review

Description Matthias Clasen 2007-12-24 06:12:39 UTC
nautilus is looking in /usr/lib/nautilus/extensions-2.0 now
Comment 1 Matthias Clasen 2007-12-24 06:13:37 UTC
Created attachment 101535 [details] [review]
patch
Comment 2 Matthias Clasen 2007-12-25 04:03:59 UTC
2007-12-24  Matthias Clasen  <mclasen@redhat.com>

        * Makefile.am: Install the nautilus extension in the right spot.
        (#505364)

Comment 3 Damien Carbery 2008-01-11 17:33:40 UTC
I think that this should be fixed by querying libnautilus-extension.pc

configure.in
NAUTILUSDIR=`pkg-config --variable=extensiondir libnautilus-extension`
AC_SUBST(NAUTILUSDIR)

Makefile.am in themus and fontilus
-nautilusdir = $(libdir)/nautilus/extensions-1.0
+nautilusdir = $(NAUTILUSDIR)

I copied this code from totem.
Comment 4 Damien Carbery 2008-01-11 17:34:56 UTC
Created attachment 102605 [details] [review]
Use pkgconfig to find nautilus extension dir.
Comment 5 Jens Granseuer 2008-01-25 19:12:22 UTC
Thanks, committed.

2008-01-25  Jens Granseuer  <jensgr@gmx.net>

        Patch by: Damien Carberry <damien.carberry@sun.com>
       
        * configure.in:
        * vfs-methods/fontilus/Makefile.am
        * vfs-methods/themus/Makefile.am: determine correct nautilus
         extension dir via pkgconfig (#505364)