diff options
author | obraun <obraun@FreeBSD.org> | 2003-01-28 20:30:36 +0000 |
---|---|---|
committer | obraun <obraun@FreeBSD.org> | 2003-01-28 20:30:36 +0000 |
commit | 167534ea639c07a6d618cfe783243dc762a10175 (patch) | |
tree | 32d295d05f8762e87ed309fef944772ef19edfc1 /net/rsync/Makefile | |
parent | 890b66edb193513ade82a8a866e7ee2d04db1ffc (diff) | |
download | FreeBSD-ports-167534ea639c07a6d618cfe783243dc762a10175.zip FreeBSD-ports-167534ea639c07a6d618cfe783243dc762a10175.tar.gz |
Aaaaarrgggg, I have destroyed the Makefile just between testing and the commit.
Apologies!
Fix it: s/@{STRIP_CMD}/@${STRIP_CMD}/
Pointed out by: Mike Harding <mvh@ix.netcom.com>
Franz Klammer <klammer@webonaut.com>
Stacey Roberts <stacey@vickiandstacey.com>
Bill Trost <trost@grey.cloud.rain.com>
and lots more
Diffstat (limited to 'net/rsync/Makefile')
-rw-r--r-- | net/rsync/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rsync/Makefile b/net/rsync/Makefile index 6da5fc1..d2d37a7 100644 --- a/net/rsync/Makefile +++ b/net/rsync/Makefile @@ -66,7 +66,7 @@ pre-configure: ${WRKSRC}/rsync.h ${WRKSRC}/zlib/zutil.h post-install: - @{STRIP_CMD} ${PREFIX}/bin/rsync + @${STRIP_CMD} ${PREFIX}/bin/rsync .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} |