diff options
author | hubertf <hubertf@pkgsrc.org> | 2000-01-05 19:40:21 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2000-01-05 19:40:21 +0000 |
commit | b90923a71403f7f519de487f4eb8e5e6bd43df95 (patch) | |
tree | e77cd9133c2d1ce6bd53fbdd120487830196ef2d | |
parent | 60e680f5fb0cc8633b7b8a4b8e7b958f48b644ef (diff) | |
download | pkgsrc-b90923a71403f7f519de487f4eb8e5e6bd43df95.tar.gz |
Use += consistently for assigning any DEPENDS
Noted by Thomas Klausner <wiz@danbala.ifoer.tuwien.ac.at>
-rw-r--r-- | Packages.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Packages.txt b/Packages.txt index a8ea81cdbe7..5715bbbea44 100644 --- a/Packages.txt +++ b/Packages.txt @@ -1,4 +1,4 @@ -# $NetBSD: Packages.txt,v 1.75 1999/12/07 08:58:59 sakamoto Exp $ +# $NetBSD: Packages.txt,v 1.76 2000/01/05 19:40:21 hubertf Exp $ ########################################################################### ========================== @@ -1318,7 +1318,7 @@ installed.] print/ghostscript5 package (it relies on the jpeg sources being present in source form during the build): -BUILD_DEPENDS= ../../graphics/jpeg/${WRKDIR:T}/jpeg-6a:../../graphics/jpeg:extract +BUILD_DEPENDS+= ../../graphics/jpeg/${WRKDIR:T}/jpeg-6a:../../graphics/jpeg:extract (b) If your package needs to use another package to build itself, this is specified using the BUILD_DEPENDS definition, but without @@ -1326,7 +1326,7 @@ specifying the stage ``:extract'' in (a) above. An example is the print/lyx package, which uses the latex binary during its build process: -BUILD_DEPENDS= latex:../../print/teTeX +BUILD_DEPENDS+= latex:../../print/teTeX (c) If your package needs a library with which to link, this is specified using the DEPENDS definition. An example of this is the @@ -1347,7 +1347,7 @@ is specified using the DEPENDS definition. The print/lyx package needs to be able to execute the latex binary from the teTex package when it runs, and that is specified: -DEPENDS= teTex-*:../../print/teTeX +DEPENDS+= teTex-*:../../print/teTeX |