diff options
author | miwi <miwi@FreeBSD.org> | 2012-03-04 20:59:42 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2012-03-04 20:59:42 +0800 |
commit | 31a94b76213fa787f41f8dbf771f96d91d2201a0 (patch) | |
tree | 57798c0804e586d0a85bfa2a3c83165f806418c4 | |
parent | ae353d1d1f66dee81b822a634ccdad928906f15b (diff) | |
download | freebsd-ports-gnome-31a94b76213fa787f41f8dbf771f96d91d2201a0.tar.gz freebsd-ports-gnome-31a94b76213fa787f41f8dbf771f96d91d2201a0.tar.zst freebsd-ports-gnome-31a94b76213fa787f41f8dbf771f96d91d2201a0.zip |
- Fix build with CLANG
PR: 164418
-rw-r--r-- | shells/mksh/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shells/mksh/Makefile b/shells/mksh/Makefile index 936f91c20766..19bd5b0d02e4 100644 --- a/shells/mksh/Makefile +++ b/shells/mksh/Makefile @@ -27,7 +27,7 @@ do-extract: ${GZCAT} ${DISTDIR}/${DISTFILES} | ${CPIO} -id do-build: - cd ${WRKSRC} && CFLAGS="${CFLAGS}" CC="${CC}" LDFLAGS="${LDFLAGS}" CPPFLAGS="${CPPFLAGS}" SHELL=${SH} ${SH} ${WRKSRC}/Build.sh -r -combine + cd ${WRKSRC} && CFLAGS="${CFLAGS}" CC="${CC}" LDFLAGS="${LDFLAGS}" CPPFLAGS="${CPPFLAGS}" SHELL=${SH} ${SH} ${WRKSRC}/Build.sh -r -c lto do-install: ${INSTALL_PROGRAM} ${WRKSRC}/mksh ${PREFIX}/bin |