diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2001-03-25 23:27:07 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2001-03-25 23:27:07 +0000 |
commit | 7a3b248f5cf9642a1847413766cfcb98bb99153a (patch) | |
tree | 952111933ab4b7e51764f2cef0a147e283f53b32 /multimedia | |
parent | 87a38f41fe27c1c586f23ce694d9ae6674290d9c (diff) | |
download | ports-7a3b248f5cf9642a1847413766cfcb98bb99153a.tar.gz ports-7a3b248f5cf9642a1847413766cfcb98bb99153a.zip |
Don't fail on a read-only ${PORTSDIR}
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=40379
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/xawtv/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/multimedia/xawtv/Makefile b/multimedia/xawtv/Makefile index 2ffbe0ab8947..6f2cb146cc29 100644 --- a/multimedia/xawtv/Makefile +++ b/multimedia/xawtv/Makefile @@ -32,7 +32,7 @@ MAN1= alevtd.1 fbtv.1 propwatch.1 rootv.1 showriff.1 v4l-conf.1 \ post-configure: .for M in ${SEDFILES} @(${SED} -e 's,^CFLAGS=,CFLAGS+=,g' ${WRKSRC}/$M/Makefile | \ - ${SED} -e 's,-O2,,g' > foo && ${MV} foo ${WRKSRC}/$M/Makefile) + ${SED} -e 's,-O2,,g' > ${WRKSRC}/foo && ${MV} ${WRKSRC}/foo ${WRKSRC}/$M/Makefile) .endfor post-install: |