diff options
author | kris <kris@FreeBSD.org> | 2001-03-13 07:53:53 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-03-13 07:53:53 +0800 |
commit | 41e4739ca74566832b4cf6a063ebcb40fd5203c6 (patch) | |
tree | 7f8b8cd9c98535432fd8f28e9727ddcdef396fcf /devel/asmutils | |
parent | 9517d3d7eff27a0ebe3b4e5c4764a8b94ba3152a (diff) | |
download | freebsd-ports-gnome-41e4739ca74566832b4cf6a063ebcb40fd5203c6.tar.gz freebsd-ports-gnome-41e4739ca74566832b4cf6a063ebcb40fd5203c6.tar.zst freebsd-ports-gnome-41e4739ca74566832b4cf6a063ebcb40fd5203c6.zip |
Attempt to deal with read-only directories.
Approved by: maintainer
Diffstat (limited to 'devel/asmutils')
-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 |