From 851a35eb5e45034beca25f5787d5ad9eab9c4660 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 1 Jul 2009 22:28:56 +0000 Subject: [PATCH] Change >| to rm/> as apparently Solaris /bin/sh doesn't like it. --- configure | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 3031d2bd..218aad1d 100755 --- a/configure +++ b/configure @@ -1,13 +1,15 @@ #!/bin/sh -# $Id: configure,v 1.15 2009-06-25 20:27:31 nicm Exp $ +# $Id: configure,v 1.16 2009-07-01 22:28:56 nicm Exp $ TMUX_PLATFORM=${TMUX_PLATFORM:-`uname -s`} CONFIG_H=config.h -echo "/* $TMUX_PLATFORM */" >|$CONFIG_H +rm -f $CONFIG_H +echo "/* $TMUX_PLATFORM */" >$CONFIG_H CONFIG_MK=config.mk -echo "# $TMUX_PLATFORM" >|$CONFIG_MK +rm -f $CONFIG_MK +echo "# $TMUX_PLATFORM" >$CONFIG_MK cat <>$CONFIG_H #undef HAVE_ASPRINTF