pidgin/pidgin

Parents aaeddb178055
Children b143d7e8e919
Don't attempt to diff package_revision_raw.txt if it doesn't exist.
Just mv the new file into place.
  • +1 -1
    Makefile.am
  • --- a/Makefile.am Sun Jun 22 16:35:34 2014 -0700
    +++ b/Makefile.am Sun Jun 22 23:48:33 2014 -0700
    @@ -117,7 +117,7 @@
    (hg --cwd $(srcdir) id -i --debug) 2>/dev/null >$@.new \
    || rm -f $@.new
    $(AM_V_at)if test -f $@.new; then \
    - if ! diff $@ $@.new > /dev/null; then \
    + if ! test -f "$@" || ! diff "$@" "$@".new > /dev/null ; then \
    mv $@.new $@; \
    else \
    rm $@.new; \