view build-aux/move-if-change @ 23262:b53dfa60f045 stable

Fix compilation error from d77f5721db51 graft to stable. * parser.cc (get_next_node): Remove extra '}'.
author Rik <rik@octave.org>
date Fri, 10 Mar 2017 16:29:19 -0800
parents 1bca6c72d2b1
children 85af7ddb6f29
line wrap: on
line source

#! /bin/sh
#
# Like mv $1 $2, but if the files are the same, just delete $1.
# Status is 0 if $2 is changed, 1 otherwise.

if test -r $2; then
  if cmp $1 $2 > /dev/null; then
    echo $2 is unchanged 1>&2
    rm -f $1
  else
    mv -f $1 $2
  fi
else
  mv -f $1 $2
fi