diff options
author | ambrisko <ambrisko@FreeBSD.org> | 2003-02-18 08:48:31 +0800 |
---|---|---|
committer | ambrisko <ambrisko@FreeBSD.org> | 2003-02-18 08:48:31 +0800 |
commit | df20fcba4f4cc5926b5b75d8b02e874055cd94f7 (patch) | |
tree | 0d86bea6f7f13daa8b7a2060cbfe6e34cba529f0 /misc | |
parent | 3956597bfc1dbd01e191f6ba748c915de6e982aa (diff) | |
download | freebsd-ports-gnome-df20fcba4f4cc5926b5b75d8b02e874055cd94f7.tar.gz freebsd-ports-gnome-df20fcba4f4cc5926b5b75d8b02e874055cd94f7.tar.zst freebsd-ports-gnome-df20fcba4f4cc5926b5b75d8b02e874055cd94f7.zip |
Don't fetch file if is already exists in distfiles.
PR: 37342
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} |