diff options
author | marcel <marcel@FreeBSD.org> | 2012-05-24 20:00:58 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2012-05-24 20:00:58 +0000 |
commit | 64b0ebf1a271d49cc43e18f2c9cae23d3c6ab6ad (patch) | |
tree | d078fdfe26e0c5452db7d149445ac6729a491737 /share | |
parent | e7223eeffb7133dbe8bf93d42f351391f821b133 (diff) | |
download | FreeBSD-src-64b0ebf1a271d49cc43e18f2c9cae23d3c6ab6ad.zip FreeBSD-src-64b0ebf1a271d49cc43e18f2c9cae23d3c6ab6ad.tar.gz |
Fix an inconsistency I just ran into for LDADD and DPADD. The description
for both of them use different, and presumably wrong, variables in the
example. They set LDFILES and SRCLIB respectively. I guess that's what
DPADD and LDADD were called first ...
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/bsd.README | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/bsd.README b/share/mk/bsd.README index e91a231..f09142e 100644 --- a/share/mk/bsd.README +++ b/share/mk/bsd.README @@ -228,7 +228,7 @@ LDADD Additional loader objects. Usually used for libraries. For example, to load with the compatibility and utility libraries, use: - LDFILES=-lutil -lcompat + LDADD=-lutil -lcompat LDFLAGS Additional loader flags. @@ -261,7 +261,7 @@ DPADD Additional dependencies for the program. Usually used for libraries. For example, to depend on the compatibility and utility libraries use: - SRCLIB=${LIBCOMPAT} ${LIBUTIL} + DPADD=${LIBCOMPAT} ${LIBUTIL} There is a predefined identifier for each (non-profiled, non-shared) library and object. Library file names are |