diff options
author | obrien <obrien@FreeBSD.org> | 1997-10-18 06:11:16 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1997-10-18 06:11:16 +0000 |
commit | 0457a77b6beefd22a38d54c7d01bb77bec8eac9a (patch) | |
tree | 1f1d61422ac4eb9ad638ffd33fb054c69a5c095f /news/aub | |
parent | 362e4e46001ba8d322752623c8769fa9fb1dbd8d (diff) | |
download | FreeBSD-ports-0457a77b6beefd22a38d54c7d01bb77bec8eac9a.zip FreeBSD-ports-0457a77b6beefd22a38d54c7d01bb77bec8eac9a.tar.gz |
sed'ing a directory produces neat affects.
Taught by: Satoshi :-)
Also we don't have /usr/tmp, so we shouldn't try to write there.
Diffstat (limited to 'news/aub')
-rw-r--r-- | news/aub/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/news/aub/Makefile b/news/aub/Makefile index e32f0eb..3d5a547 100644 --- a/news/aub/Makefile +++ b/news/aub/Makefile @@ -4,7 +4,7 @@ # Date created: Sun Oct 12, 1997 # Whom: David O'Brien (obrien@cs.ucdavis.edu) # -# $Id: Makefile,v 1.1.1.1 1997/10/13 07:02:37 obrien Exp $ +# $Id: Makefile,v 1.2 1997/10/14 11:18:45 asami Exp $ # DISTNAME= aub @@ -28,7 +28,8 @@ do-extract: pre-configure: @${SED} -e '1,1s:/usr/local/bin/perl:!/usr/bin/perl:' \ -e 's:$SUM = "/bin/sum":$SUM = "/usr/bin/sum":' \ - ${DISTDIR}/aub > ${WRKDIR}/aub + -e 's:/usr/tmp:/var/tmp:' \ + ${DISTDIR}/${DIST_SUBDIR}/aub > ${WRKDIR}/aub do-install: ${INSTALL_SCRIPT} ${WRKDIR}/aub ${PREFIX}/bin |