diff options
author | tmm <tmm@FreeBSD.org> | 2002-10-31 02:51:10 +0800 |
---|---|---|
committer | tmm <tmm@FreeBSD.org> | 2002-10-31 02:51:10 +0800 |
commit | 2e43a4e015e1aa03115ed7b503030aab622eee8e (patch) | |
tree | d01a3317b0e6358f6416297bf4d4e69c4d9bc066 /lang/ezm3 | |
parent | 21e29eb7dcc43264b1650da10c7b667c58674a22 (diff) | |
download | freebsd-ports-gnome-2e43a4e015e1aa03115ed7b503030aab622eee8e.tar.gz freebsd-ports-gnome-2e43a4e015e1aa03115ed7b503030aab622eee8e.tar.zst freebsd-ports-gnome-2e43a4e015e1aa03115ed7b503030aab622eee8e.zip |
Fix a construct that causes make errors on platforms that are not
supported by these ports. This fixes 'make readmes' for them on
sparc64 (and by that, release building without NOPORTS).
Approved by: jdp
Diffstat (limited to 'lang/ezm3')
-rw-r--r-- | lang/ezm3/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/ezm3/Makefile b/lang/ezm3/Makefile index ee92f9d80f43..662a07ebc468 100644 --- a/lang/ezm3/Makefile +++ b/lang/ezm3/Makefile @@ -54,7 +54,7 @@ TARGETDIR= fbsd-alpha WORDSIZE= 64 .endif -.if empty(TARGET) +.if !defined(TARGET) pre-fetch: @${ECHO_MSG} "Cannot determine M3 target for this architecture" @${FALSE} |