You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2014/03/13 16:03:38 UTC

svn commit: r1577186 - /subversion/trunk/tools/dev/unix-build/Makefile.svn

Author: stsp
Date: Thu Mar 13 15:03:38 2014
New Revision: 1577186

URL: http://svn.apache.org/r1577186
Log:
* tools/dev/unix-build/Makefile.svn: In my custom build script,
   don't fail to configure gettext if 'gsed' is not found.
   The intention is to use 'gsed' if available, and fall back
   on 'sed' otherwise. The gettext build _requires_ GNU sed.

Modified:
    subversion/trunk/tools/dev/unix-build/Makefile.svn

Modified: subversion/trunk/tools/dev/unix-build/Makefile.svn
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/unix-build/Makefile.svn?rev=1577186&r1=1577185&r2=1577186&view=diff
==============================================================================
--- subversion/trunk/tools/dev/unix-build/Makefile.svn (original)
+++ subversion/trunk/tools/dev/unix-build/Makefile.svn Thu Mar 13 15:03:38 2014
@@ -1163,7 +1163,7 @@ $(GETTEXT_OBJDIR)/.configured: $(GETTEXT
 		--disable-java \
 		--disable-csharp \
 		$(THREADS_FLAG)
-	which gsed && \
+	-which gsed && \
 		sed -e 's/sed /gsed /g' < $(GETTEXT_SRCDIR)/build-aux/moopp \
 		> $(GETTEXT_SRCDIR)/build-aux/moopp.fixed && \
 		mv $(GETTEXT_SRCDIR)/build-aux/moopp.fixed \