From owner-svn-ports-all@FreeBSD.ORG Wed Jan 14 10:15:07 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A38A2589; Wed, 14 Jan 2015 10:15:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8EF82A68; Wed, 14 Jan 2015 10:15:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0EAF7Ot099649; Wed, 14 Jan 2015 10:15:07 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0EAF7mF099647; Wed, 14 Jan 2015 10:15:07 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201501141015.t0EAF7mF099647@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Wed, 14 Jan 2015 10:15:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377005 - in head/astro: stellarium stellarium-qt4 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jan 2015 10:15:07 -0000 Author: danfe Date: Wed Jan 14 10:15:06 2015 New Revision: 377005 URL: https://svnweb.freebsd.org/changeset/ports/377005 QAT: https://qat.redports.org/buildarchive/r377005/ Log: Fix the logic so it actually works as intended. Modified: head/astro/stellarium-qt4/Makefile head/astro/stellarium/Makefile Modified: head/astro/stellarium-qt4/Makefile ============================================================================== --- head/astro/stellarium-qt4/Makefile Wed Jan 14 09:54:42 2015 (r377004) +++ head/astro/stellarium-qt4/Makefile Wed Jan 14 10:15:06 2015 (r377005) @@ -84,8 +84,8 @@ post-install: existing=`${STAT} -qf '%z' \ ${STAGEDIR}${DATADIR}/textures/$$f || \ ${ECHO_CMD} 0` ; \ - ${TEST} $$new -gt $$existing && \ - ${ECHO_CMD} "-- Replacing texture: $$f\ + ${TEST} $$new -gt $$existing || continue ; \ + ${ECHO_CMD} "-- Replacing texture: $$f\ (has larger file size or missing)" ; \ ${INSTALL_DATA} $$f ${STAGEDIR}${DATADIR}/textures ; \ done) Modified: head/astro/stellarium/Makefile ============================================================================== --- head/astro/stellarium/Makefile Wed Jan 14 09:54:42 2015 (r377004) +++ head/astro/stellarium/Makefile Wed Jan 14 10:15:06 2015 (r377005) @@ -64,8 +64,8 @@ post-install: new=`${STAT} -f '%z' $$f` ; \ existing=`${STAT} -f '%z' \ ${STAGEDIR}${DATADIR}/textures/$$f` ; \ - ${TEST} $$new -gt $$existing && \ - ${ECHO_CMD} "-- Replacing texture: $$f\ + ${TEST} $$new -gt $$existing || continue ; \ + ${ECHO_CMD} "-- Replacing texture: $$f\ (has larger file size)" ; \ ${INSTALL_DATA} $$f ${STAGEDIR}${DATADIR}/textures ; \ done)