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 /graphics | |
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 'graphics')
-rw-r--r-- | graphics/juno-2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/juno-2/Makefile b/graphics/juno-2/Makefile index e1a94a9275b7..fbe83c3d0740 100644 --- a/graphics/juno-2/Makefile +++ b/graphics/juno-2/Makefile @@ -57,7 +57,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} |