Date: Tue, 5 Nov 2013 00:42:22 +0000 (UTC) From: Koop Mast <kwm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332795 - head/graphics/gimp-app Message-ID: <201311050042.rA50gMux015106@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kwm Date: Tue Nov 5 00:42:22 2013 New Revision: 332795 URL: http://svnweb.freebsd.org/changeset/ports/332795 Log: Chance to .elif to make sure it works like intended, this fixes a warning with fmake on 9.x and before [1]. Strangly bmake seems to silently ignore it. Reported by: Robert Burmeister <Robert.Burmeister@UToledo.edu> Modified: head/graphics/gimp-app/Makefile Modified: head/graphics/gimp-app/Makefile ============================================================================== --- head/graphics/gimp-app/Makefile Tue Nov 5 00:39:45 2013 (r332794) +++ head/graphics/gimp-app/Makefile Tue Nov 5 00:42:22 2013 (r332795) @@ -201,7 +201,7 @@ post-patch: .if defined(GIMP_SLAVE) && ${GIMP_SLAVE}==pygimp post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/libexec/gimp/2.2/python/*.so -.else ! defined(GIMP_SLAVE) +.elif ! defined(GIMP_SLAVE) post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgimp*-2.0.so.0 @${STRIP_CMD} ${STAGEDIR}${PREFIX}/libexec/gimp/2.2/modules/*.so
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311050042.rA50gMux015106>