diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2001-03-12 23:53:53 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2001-03-12 23:53:53 +0000 |
commit | 8c66356fe6d039dfe800be211dab938a4a1be46c (patch) | |
tree | 2447bada71e2f00a128c3710c976c8c973b4f07e /devel | |
parent | Add ua-ispell 0.0.2b, ukrainian (KOI8-U) dictionary for ISPELL. (diff) |
Attempt to deal with read-only directories.
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=39705
Diffstat (limited to 'devel')
-rw-r--r-- | devel/asmutils/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/asmutils/Makefile b/devel/asmutils/Makefile index e6d3a075a44d..1ab3c25b1fc8 100644 --- a/devel/asmutils/Makefile +++ b/devel/asmutils/Makefile @@ -32,8 +32,8 @@ DOCFILES= Asmutils-HOWTO acknowledgements endorsements history \ index s-contrib s-debug s-include s-layout s-optimize post-patch: - @(${SED} -e 's,%%KERNEL%%,${OSREL:S/.//g},g' ${WRKSRC}/MCONFIG > foo \ - && ${MV} foo ${WRKSRC}/MCONFIG) + @(${SED} -e 's,%%KERNEL%%,${OSREL:S/.//g},g' ${WRKSRC}/MCONFIG > ${WRKDIR}/foo \ + && ${MV} ${WRKDIR}/foo ${WRKSRC}/MCONFIG) do-install: ${MKDIR} ${PREFIX}/bin/asmutils |