diff options
author | kris <kris@FreeBSD.org> | 2001-03-25 23:27:07 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-03-25 23:27:07 +0000 |
commit | 1ae72d5550ad99c8dd7abe2c10272fbc4cda3b73 (patch) | |
tree | 947de59325de84afdd7229d92b0b9c0636319c15 /multimedia/xawtv | |
parent | ef8056711cd0bdafde7b19b95734571149033c6d (diff) | |
download | FreeBSD-ports-1ae72d5550ad99c8dd7abe2c10272fbc4cda3b73.zip FreeBSD-ports-1ae72d5550ad99c8dd7abe2c10272fbc4cda3b73.tar.gz |
Don't fail on a read-only ${PORTSDIR}
Approved by: maintainer
Diffstat (limited to 'multimedia/xawtv')
-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 2ffbe0a..6f2cb14 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: |