diff options
author | Doug Ambrisko <ambrisko@FreeBSD.org> | 2003-02-18 00:48:31 +0000 |
---|---|---|
committer | Doug Ambrisko <ambrisko@FreeBSD.org> | 2003-02-18 00:48:31 +0000 |
commit | afd7ffb3ae7193f749a16e2a0962415ae8bb34ab (patch) | |
tree | e33add26ebc9793b4e14aa23ead0129726ad7bce /misc | |
parent | Updates from maintainer. (diff) |
Don't fetch file if is already exists in distfiles.
PR: 37342
Notes
Notes:
svn path=/head/; revision=75757
Diffstat (limited to 'misc')
-rw-r--r-- | misc/airoflash/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/misc/airoflash/Makefile b/misc/airoflash/Makefile index ace63744a0c4..06f547855a79 100644 --- a/misc/airoflash/Makefile +++ b/misc/airoflash/Makefile @@ -17,7 +17,8 @@ MAINTAINER= ambrisko@freebsd.org AF_VERSION= 1.3 do-fetch: - ${FETCH_CMD} -o ${DISTDIR}/${DISTNAME} ${MASTER_SITES} + [ -f ${DISTDIR}/${DISTNAME} ] || \ + ${FETCH_CMD} -o ${DISTDIR}/${DISTNAME} ${MASTER_SITES} do-extract: ${MKDIR} ${WRKSRC} |