diff options
author | obrien <obrien@FreeBSD.org> | 2002-09-29 09:44:12 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-09-29 09:44:12 +0800 |
commit | d698654473f94b7a15d3086d6fba8e8fe89e4b8e (patch) | |
tree | b3aa7a4bd8c924e02c2dd11cd32c0fd6b915ba4e /shells | |
parent | 80c927ed3b05aa80f8725a03c24716feb204b469 (diff) | |
download | freebsd-ports-gnome-d698654473f94b7a15d3086d6fba8e8fe89e4b8e.tar.gz freebsd-ports-gnome-d698654473f94b7a15d3086d6fba8e8fe89e4b8e.tar.zst freebsd-ports-gnome-d698654473f94b7a15d3086d6fba8e8fe89e4b8e.zip |
Fix logic error when NOPORTDOCS is set.
Submitted by: Peter Avalos <pavalos@theshell.com>
PR: 43459
Diffstat (limited to 'shells')
-rw-r--r-- | shells/bash/Makefile | 4 | ||||
-rw-r--r-- | shells/bash2/Makefile | 4 | ||||
-rw-r--r-- | shells/bash3/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/shells/bash/Makefile b/shells/bash/Makefile index 6a5ffda96529..0808da9fdb6d 100644 --- a/shells/bash/Makefile +++ b/shells/bash/Makefile @@ -13,9 +13,9 @@ CATEGORIES= shells MASTER_SITES= ${MASTER_SITE_GNU} \ ftp://ftp.cwru.edu/pub/bash/ MASTER_SITE_SUBDIR= bash +DISTFILES= bash-${PORTVERSION:C/\....$//}.tar.gz .if !defined(NOPORTDOCS) -DISTFILES= bash-${PORTVERSION:C/\....$//}.tar.gz \ - bash-doc-${PORTVERSION:C/\....$//}.tar.gz +DISTFILES+= bash-doc-${PORTVERSION:C/\....$//}.tar.gz .endif PATCH_SITES= ftp://ftp.cwru.edu/pub/bash/bash-2.05b-patches/ \ diff --git a/shells/bash2/Makefile b/shells/bash2/Makefile index 6a5ffda96529..0808da9fdb6d 100644 --- a/shells/bash2/Makefile +++ b/shells/bash2/Makefile @@ -13,9 +13,9 @@ CATEGORIES= shells MASTER_SITES= ${MASTER_SITE_GNU} \ ftp://ftp.cwru.edu/pub/bash/ MASTER_SITE_SUBDIR= bash +DISTFILES= bash-${PORTVERSION:C/\....$//}.tar.gz .if !defined(NOPORTDOCS) -DISTFILES= bash-${PORTVERSION:C/\....$//}.tar.gz \ - bash-doc-${PORTVERSION:C/\....$//}.tar.gz +DISTFILES+= bash-doc-${PORTVERSION:C/\....$//}.tar.gz .endif PATCH_SITES= ftp://ftp.cwru.edu/pub/bash/bash-2.05b-patches/ \ diff --git a/shells/bash3/Makefile b/shells/bash3/Makefile index 6a5ffda96529..0808da9fdb6d 100644 --- a/shells/bash3/Makefile +++ b/shells/bash3/Makefile @@ -13,9 +13,9 @@ CATEGORIES= shells MASTER_SITES= ${MASTER_SITE_GNU} \ ftp://ftp.cwru.edu/pub/bash/ MASTER_SITE_SUBDIR= bash +DISTFILES= bash-${PORTVERSION:C/\....$//}.tar.gz .if !defined(NOPORTDOCS) -DISTFILES= bash-${PORTVERSION:C/\....$//}.tar.gz \ - bash-doc-${PORTVERSION:C/\....$//}.tar.gz +DISTFILES+= bash-doc-${PORTVERSION:C/\....$//}.tar.gz .endif PATCH_SITES= ftp://ftp.cwru.edu/pub/bash/bash-2.05b-patches/ \ |