Skip to content

Commit

Permalink
sysutils/coreutils: Fix malformed conditional expression
Browse files Browse the repository at this point in the history
  • Loading branch information
lwhsu committed Feb 27, 2024
1 parent 79fe36a commit e01e0ed
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions sysutils/coreutils/Makefile
Expand Up @@ -24,9 +24,6 @@ GNU_CONFIGURE_MANPREFIX=${PREFIX}/share
# bugs.freebsd.org/160060
CONFIGURE_ARGS= --program-prefix=g \
--program-transform-name=s/stat/nustat/
.if ${ARCH} == i386
CONFIGURE_ARGS+= --disable-year2038
.endif
CONFIGURE_ENV= FORCE_UNSAFE_CONFIGURE=1

CONFLICTS_INSTALL= gdu geneweb gexpr rubygem-god # bin/gdu bin/gexpr bin/god bin/gwc
Expand All @@ -48,4 +45,10 @@ post-install:
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/g* \
${STAGEDIR}${PREFIX}/libexec/coreutils/libstdbuf.so

.include <bsd.port.options.mk>

.if ${ARCH} == i386
CONFIGURE_ARGS+= --disable-year2038
.endif

.include <bsd.port.mk>

0 comments on commit e01e0ed

Please sign in to comment.