diff options
author | mbr <mbr@FreeBSD.org> | 2003-04-13 09:31:20 +0000 |
---|---|---|
committer | mbr <mbr@FreeBSD.org> | 2003-04-13 09:31:20 +0000 |
commit | 6a01ca676130b28ddb154f3f6989c7b5ef5d1dae (patch) | |
tree | 54738344c38be9edf1e2917e09997b6e473dab21 /emulators/vmware2/Makefile | |
parent | 680015e346f2572f505cad60400ded74d39a61f0 (diff) | |
download | FreeBSD-ports-6a01ca676130b28ddb154f3f6989c7b5ef5d1dae.zip FreeBSD-ports-6a01ca676130b28ddb154f3f6989c7b5ef5d1dae.tar.gz |
Make portlint a bit more happy.
Diffstat (limited to 'emulators/vmware2/Makefile')
-rw-r--r-- | emulators/vmware2/Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/emulators/vmware2/Makefile b/emulators/vmware2/Makefile index 541f439..b029925 100644 --- a/emulators/vmware2/Makefile +++ b/emulators/vmware2/Makefile @@ -88,10 +88,10 @@ pre-patch: post-patch: .if ${OSVERSION} >= 500023 - cat ${FILESDIR}/kse.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 + ${CAT} ${FILESDIR}/kse.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 .endif .if ${OSVERSION} >= 500027 - cat ${FILESDIR}/pmap.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 + ${CAT} ${FILESDIR}/pmap.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 .endif ${CP} ${FILESDIR}/Makefile ${WRKSRC} ${CP} ${FILESDIR}/Makefile.vmmon ${WRKSRC}/vmmon-only/Makefile @@ -110,20 +110,20 @@ post-patch: ${WRKSRC}/vmmon-only/freebsd/*.c \ ${WRKSRC}/vmware-distrib/vmmon-only/freebsd/*.c .endif - cat ${FILESDIR}/kmoddeps.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 + ${CAT} ${FILESDIR}/kmoddeps.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 .if ${OSVERSION} >= 500038 - cat ${FILESDIR}/fo_ioctl.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 + ${CAT} ${FILESDIR}/fo_ioctl.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 .endif .if ${OSVERSION} >= 500100 - cat ${FILESDIR}/filedesc.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 - cat ${FILESDIR}/m_waitok.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 + ${CAT} ${FILESDIR}/filedesc.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 + ${CAT} ${FILESDIR}/m_waitok.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 .endif .if ${OSVERSION} >= 500104 - cat ${FILESDIR}/cdevsw.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 + ${CAT} ${FILESDIR}/cdevsw.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 .endif .if ${OSVERSION} >= 500109 - cat ${FILESDIR}/hostif_c.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 - cat ${FILESDIR}/vm_types_h.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 + ${CAT} ${FILESDIR}/hostif_c.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 + ${CAT} ${FILESDIR}/vm_types_h.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 .endif setoptions: |