mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-10-29 03:34:16 +00:00
A few DESTDIR fixes.
* Makefile.am: * data/Makefile.am: * helper-scripts/Makefile.am: A few DESTDIR fixes. * libnautilus-private/nautilus-icon-factory.c: Cache more icons. The old number was arbitrary and way too small.
This commit is contained in:
parent
a396f06adf
commit
260d1eb66e
5 changed files with 23 additions and 13 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2001-10-07 Darin Adler <darin@bentspoon.com>
|
||||
|
||||
* Makefile.am:
|
||||
* data/Makefile.am:
|
||||
* helper-scripts/Makefile.am:
|
||||
A few DESTDIR fixes.
|
||||
|
||||
* libnautilus-private/nautilus-icon-factory.c:
|
||||
Cache more icons. The old number was arbitrary and way too small.
|
||||
|
||||
2001-10-05 Darin Adler <darin@bentspoon.com>
|
||||
|
||||
* libnautilus-private/nautilus-icon-factory.c: Remove gratuitous
|
||||
|
|
|
@ -117,10 +117,10 @@ dist-hook: nautilus.spec
|
|||
##################################################################
|
||||
|
||||
install-data-hook: nautilus-clean.sh
|
||||
$(mkinstalldirs) $(DESTDIR)/$(prefix)/bin
|
||||
$(mkinstalldirs) $(DESTDIR)$(prefix)/bin
|
||||
@list='nautilus-clean.sh'; for p in $$list; do\
|
||||
if test -f $(srcdir)/$$p; then \
|
||||
echo " $(INSTALL_PROGRAM) $(srcdir)/$$p $(DESTDIR)/$(prefix)/bin/$$p"; \
|
||||
$(INSTALL_PROGRAM) $(srcdir)/$$p $(DESTDIR)/$(prefix)/bin/$$p; \
|
||||
echo " $(INSTALL_PROGRAM) $(srcdir)/$$p $(DESTDIR)$(prefix)/bin/$$p"; \
|
||||
$(INSTALL_PROGRAM) $(srcdir)/$$p $(DESTDIR)$(prefix)/bin/$$p; \
|
||||
else :; fi; \
|
||||
done
|
||||
|
|
|
@ -55,9 +55,9 @@ SUBDIRS = \
|
|||
$(NULL)
|
||||
|
||||
install-data-local: $(DIRECTORY_FILES)
|
||||
$(mkinstalldirs) $(sysconfdir)/X11/starthere
|
||||
$(mkinstalldirs) $(sysconfdir)/X11/sysconfig
|
||||
$(mkinstalldirs) $(sysconfdir)/X11/serverconfig
|
||||
$(INSTALL_DATA) starthere.directory $(sysconfdir)/X11/starthere/.directory
|
||||
$(INSTALL_DATA) sysconfig.directory $(sysconfdir)/X11/sysconfig/.directory
|
||||
$(INSTALL_DATA) serverconfig.directory $(sysconfdir)/X11/serverconfig/.directory
|
||||
$(mkinstalldirs) $(DESTDIR)$(sysconfdir)/X11/starthere
|
||||
$(mkinstalldirs) $(DESTDIR)$(sysconfdir)/X11/sysconfig
|
||||
$(mkinstalldirs) $(DESTDIR)$(sysconfdir)/X11/serverconfig
|
||||
$(INSTALL_DATA) starthere.directory $(DESTDIR)$(sysconfdir)/X11/starthere/.directory
|
||||
$(INSTALL_DATA) sysconfig.directory $(DESTDIR)$(sysconfdir)/X11/sysconfig/.directory
|
||||
$(INSTALL_DATA) serverconfig.directory $(DESTDIR)$(sysconfdir)/X11/serverconfig/.directory
|
||||
|
|
|
@ -6,11 +6,11 @@ EXTRA_DIST= \
|
|||
$(NULL)
|
||||
|
||||
install-data-hook: nautilus-verify-rpm.sh nautilus-restore-settings-to-default.sh
|
||||
$(mkinstalldirs) $(DESTDIR)/$(prefix)/bin
|
||||
$(mkinstalldirs) $(DESTDIR)$(prefix)/bin
|
||||
@list='nautilus-verify-rpm.sh nautilus-restore-settings-to-default.sh'; for p in $$list; do\
|
||||
if test -f $(srcdir)/$$p; then \
|
||||
echo " $(INSTALL_PROGRAM) $(srcdir)/$$p $(DESTDIR)/$(prefix)/bin/$$p"; \
|
||||
$(INSTALL_PROGRAM) $(srcdir)/$$p $(DESTDIR)/$(prefix)/bin/$$p; \
|
||||
echo " $(INSTALL_PROGRAM) $(srcdir)/$$p $(DESTDIR)$(prefix)/bin/$$p"; \
|
||||
$(INSTALL_PROGRAM) $(srcdir)/$$p $(DESTDIR)$(prefix)/bin/$$p; \
|
||||
else :; fi; \
|
||||
done
|
||||
|
||||
|
|
|
@ -94,7 +94,7 @@ static const char *icon_file_name_suffixes[] =
|
|||
* cache if the caller keeps the pixbuf around (we only get rid of
|
||||
* items from the cache after the caller unref's them).
|
||||
*/
|
||||
#define ICON_CACHE_COUNT 20
|
||||
#define ICON_CACHE_COUNT 128
|
||||
|
||||
/* This is the number of milliseconds we wait before sweeping out
|
||||
* items from the cache.
|
||||
|
|
Loading…
Reference in a new issue