diff options
author | az <az@FreeBSD.org> | 2013-07-26 18:46:37 +0800 |
---|---|---|
committer | az <az@FreeBSD.org> | 2013-07-26 18:46:37 +0800 |
commit | 425a912423003f8cf48eb9dc516a4d77b8a20cf2 (patch) | |
tree | 4e432cd7adf68b48f6abe895819485849ed8f886 /security/l0phtcrack | |
parent | 1079766f17b5d6a4c7cf98bd67a211c4e64e0017 (diff) | |
download | freebsd-ports-gnome-425a912423003f8cf48eb9dc516a4d77b8a20cf2.tar.gz freebsd-ports-gnome-425a912423003f8cf48eb9dc516a4d77b8a20cf2.tar.zst freebsd-ports-gnome-425a912423003f8cf48eb9dc516a4d77b8a20cf2.zip |
- switch simple inline replacement from perl to sed
and remove where is no need in this anymore.
- trim Makefile header
Approved by: bapt@ (portmrg@)
Diffstat (limited to 'security/l0phtcrack')
-rw-r--r-- | security/l0phtcrack/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/l0phtcrack/Makefile b/security/l0phtcrack/Makefile index cf124e9ed2fc..f1c89063a700 100644 --- a/security/l0phtcrack/Makefile +++ b/security/l0phtcrack/Makefile @@ -18,11 +18,11 @@ NO_WRKSUBDIR= yes PLIST= ${WRKDIR}/pkg-plist USE_PERL5_BUILD=yes USE_ZIP= yes +USE_DOS2UNIX= yes post-extract: ${RM} ${WRKDIR}/*exe - ${PERL} -pi -e "s:\r::g" ${WRKDIR}/* - ${PERL} -pi -e "s:ommited:omitted:g" ${WRKDIR}/util.c + ${REINPLACE_CMD} -i '' -e 's|ommited|omitted|' ${WRKDIR}/util.c do-build: cd ${WRKDIR} && ${CC} ${CFLAGS} -DMPU8086 *.c -o lc_CLI |