diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | Makefile.am | 13 | ||||
-rw-r--r-- | nautilus-file-management-properties.desktop.in | 1 |
3 files changed, 20 insertions, 3 deletions
@@ -1,3 +1,12 @@ +2003-03-12 Alex Duggan <aldug@astrolinux.com> + + * Makefile.am: install nautilus-file-management-properties + .desktop file to the correct location so it's seen in + the gnome-panel menus + + * nautilus-file-management-properties.desktop.in: + Add startup notification + 2003-03-12 Dave Camp <dave@ximian.com> * src/file-manager/fm-properties-window.c diff --git a/Makefile.am b/Makefile.am index 4a3ef31b2..90950e25f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,8 +4,11 @@ include $(top_srcdir)/Makefile.shared DESKTOP_IN_FILES= \ nautilus.desktop.in \ + nautilus-file-management-properties.desktop.in +DESKTOP_APPLICATIONS_FILES= \ + nautilus.desktop +DESKTOP_SETTINGS_FILES= \ nautilus-file-management-properties.desktop -DESKTOP_FILES=$(DESKTOP_IN_FILES:.desktop.in=.desktop) SUBDIRS = \ libnautilus \ @@ -40,11 +43,15 @@ EXTRA_DIST= \ Makefile.shared \ add-include-prefix \ $(DESKTOP_IN_FILES) \ - $(DESKTOP_FILES) \ + $(DESKTOP_APPLICATIONS_FILES) \ + $(DESKTOP_SETTINGS_FILES) \ $(NULL) Applicationsdir = $(datadir)/applications -Applications_DATA = $(DESKTOP_FILES) +Applications_DATA = $(DESKTOP_APPLICATIONS_FILES) + +Settingsdir = $(datadir)/control-center-2.0/capplets +Settings_DATA = $(DESKTOP_SETTINGS_FILES) dist-hook: nautilus.spec cp nautilus.spec $(distdir) diff --git a/nautilus-file-management-properties.desktop.in b/nautilus-file-management-properties.desktop.in index 1911fa5a5..117b2be7e 100644 --- a/nautilus-file-management-properties.desktop.in +++ b/nautilus-file-management-properties.desktop.in @@ -6,4 +6,5 @@ Exec=nautilus-file-management-properties Icon=gnome-fs-directory Terminal=false Type=Application +StartupNotify=true Categories=GNOME;Application;Settings; |