diff options
author | Koop Mast <kwm@FreeBSD.org> | 2013-11-05 08:42:22 +0800 |
---|---|---|
committer | Koop Mast <kwm@FreeBSD.org> | 2013-11-05 08:42:22 +0800 |
commit | 1ffea4db451f6c884d8fd2bdc1c8e8424737c1b7 (patch) | |
tree | c917325bde29ff13206221858d27e4be0c953909 /graphics | |
parent | 94c202ef760f359f86fe3f8eb7f6476fbdabca6f (diff) | |
download | freebsd-ports-gnome-1ffea4db451f6c884d8fd2bdc1c8e8424737c1b7.tar.gz freebsd-ports-gnome-1ffea4db451f6c884d8fd2bdc1c8e8424737c1b7.tar.zst freebsd-ports-gnome-1ffea4db451f6c884d8fd2bdc1c8e8424737c1b7.zip |
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>
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gimp-app/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/gimp-app/Makefile b/graphics/gimp-app/Makefile index 2ddedae2e3c5..feffd13623aa 100644 --- a/graphics/gimp-app/Makefile +++ b/graphics/gimp-app/Makefile @@ -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 |