diff options
author | ohauer <ohauer@FreeBSD.org> | 2016-01-17 23:01:34 +0800 |
---|---|---|
committer | ohauer <ohauer@FreeBSD.org> | 2016-01-17 23:01:34 +0800 |
commit | f9ee667db9f59bc08953c280fa2183b06bd17c00 (patch) | |
tree | 47fb84f40281d1831171657828b53da0016635da /www/serf | |
parent | 6d47fe3954a36ba418d4bc620144f0c7a6625b79 (diff) | |
download | freebsd-ports-gnome-f9ee667db9f59bc08953c280fa2183b06bd17c00.tar.gz freebsd-ports-gnome-f9ee667db9f59bc08953c280fa2183b06bd17c00.tar.zst freebsd-ports-gnome-f9ee667db9f59bc08953c280fa2183b06bd17c00.zip |
- fix typo in do-install s/SENTENV/SETENV/
Until now ${SETENV} is empty so the fix does not
affect the result. (no MFH)
Submitted by: John Hein
Approved by: lev@ (implicit)
Diffstat (limited to 'www/serf')
-rw-r--r-- | www/serf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/serf/Makefile b/www/serf/Makefile index 7e3162446239..a564757fa337 100644 --- a/www/serf/Makefile +++ b/www/serf/Makefile @@ -39,7 +39,7 @@ do-build: @(cd ${WRKSRC} && ${SETENV} ${MAKE_CMD} ${SCONS_ARGS}) do-install: - @(cd ${WRKSRC} && ${SENTENV} ${MAKE_CMD} ${SCONS_ARGS} ${INSTALL_TARGET}) + @(cd ${WRKSRC} && ${SETENV} ${MAKE_CMD} ${SCONS_ARGS} ${INSTALL_TARGET}) post-patch: @${REINPLACE_CMD} -E \ |