diff options
author | kwm <kwm@FreeBSD.org> | 2013-11-05 08:42:22 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2013-11-05 08:42:22 +0800 |
commit | 726de6211be95bc27b3f5fc6d947aabc2ee33f1b (patch) | |
tree | c917325bde29ff13206221858d27e4be0c953909 | |
parent | 7deccec9b24f3b9b966389b0f9ad0a27d204ccec (diff) | |
download | freebsd-ports-gnome-726de6211be95bc27b3f5fc6d947aabc2ee33f1b.tar.gz freebsd-ports-gnome-726de6211be95bc27b3f5fc6d947aabc2ee33f1b.tar.zst freebsd-ports-gnome-726de6211be95bc27b3f5fc6d947aabc2ee33f1b.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>
-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 |