From 24eb60dae0dab45139610eca1ae36dd167396dca Mon Sep 17 00:00:00 2001 From: Kevin James Date: Thu, 16 Apr 2009 16:26:25 +0000 Subject: [PATCH] Applied Makefile-check-writable-directories.patch Moved src/po/esp to src/po/es --- src/Makefile.in | 4 ++++ src/po/{esp => es}/messages.mo | Bin 2 files changed, 4 insertions(+) rename src/po/{esp => es}/messages.mo (100%) diff --git a/src/Makefile.in b/src/Makefile.in index ca26a11..105dd12 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -446,8 +446,10 @@ install-applicationsDATA: $(applications_DATA) @list='$(applications_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ + if test -w "$(DESTDIR)$(applicationsdir)"; then \ echo " $(applicationsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(applicationsdir)/$$f'"; \ $(applicationsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(applicationsdir)/$$f"; \ + else echo "$(DESTDIR)$(applicationsdir) not writable: skipping $$f"; fi; \ done uninstall-applicationsDATA: @@ -483,7 +485,9 @@ install-pixmapDATA: $(pixmap_DATA) if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(pixmapDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pixmapdir)/$$f'"; \ + if test -w "$(DESTDIR)$(pixmapdir)"; then \ $(pixmapDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pixmapdir)/$$f"; \ + else echo "$(DESTDIR)$(pixmapdir) not writable: skipping $$f"; fi \ done uninstall-pixmapDATA: diff --git a/src/po/esp/messages.mo b/src/po/es/messages.mo similarity index 100% rename from src/po/esp/messages.mo rename to src/po/es/messages.mo