diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2011-06-25 05:45:13 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2011-06-25 05:45:13 +0800 |
commit | 263a830989f8a72669499af3295f0ebb2afa505e (patch) | |
tree | 4fbad94137728142f9643f45aab41fe4b001f59b | |
parent | c13fc870439723db44c2ecbf1580ed9d253b8f61 (diff) | |
download | freebsd-ports-gnome-263a830989f8a72669499af3295f0ebb2afa505e.tar.gz freebsd-ports-gnome-263a830989f8a72669499af3295f0ebb2afa505e.tar.zst freebsd-ports-gnome-263a830989f8a72669499af3295f0ebb2afa505e.zip |
- Fix build when WITH_STATIC is set
Reported by: dougb@
Submitted by: jhell <jhell@DataIX.net>
-rw-r--r-- | shells/ksh93/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shells/ksh93/Makefile b/shells/ksh93/Makefile index db00ae7b2360..f362d05ae14c 100644 --- a/shells/ksh93/Makefile +++ b/shells/ksh93/Makefile @@ -43,7 +43,7 @@ KSHVERSION= 2011-02-08 .include <bsd.port.options.mk> .if defined(WITH_STATIC) -MAKE_ENV+= LDFLAGS=-static +MAKE_ENV+= LDFLAGS+=-static .endif post-patch: |