Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 08 Jan 2008 15:18:04 +0000
From:      Roy Marples <roy@marples.name>
To:        freebsd-gnome@freebsd.org
Subject:   RE: Fail to install databases/evolution-data-server 1.12.3
Message-ID:  <1199805484.47395.2.camel@localhost>

next in thread | raw e-mail | index | archive | help

--=-2d9FC39niaLEwjj4+vU9
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

Hi

The problem is that the which command is clobbering the return for
people who don't have gtk-rebase installed.

Attached is a patch to fix this.

Thanks

Roy

--=-2d9FC39niaLEwjj4+vU9
Content-Disposition: attachment; filename=evo.patch
Content-Type: text/x-patch; name=evo.patch; charset=us-ascii
Content-Transfer-Encoding: 7bit

diff -ur evolution-data-server-1.12.3.orig/docs/reference/camel/Makefile.in evolution-data-server-1.12.3/docs/reference/camel/Makefile.in
--- evolution-data-server-1.12.3.orig/docs/reference/camel/Makefile.in	2008-01-08 15:11:02.000000000 +0000
+++ evolution-data-server-1.12.3/docs/reference/camel/Makefile.in	2008-01-08 15:13:15.000000000 +0000
@@ -684,8 +684,9 @@
 	  done; \
 	  echo '-- Installing $(srcdir)/html/index.sgml' ; \
 	  $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR) || :; \
-	  which gtkdoc-rebase >/dev/null && \
+	  if which gtkdoc-rebase >/dev/null; then \
 	    gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$(DESTDIR)$(TARGET_DIR) ; \
+	  fi ; \
 	fi
 
 uninstall-local:

--=-2d9FC39niaLEwjj4+vU9--




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1199805484.47395.2.camel>