diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2004-02-05 22:44:25 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2004-02-05 22:44:25 +0000 |
commit | 47d7e8a96f52d91b1f0fe5184f0f5d88c897db38 (patch) | |
tree | 687ecea23d9cd395958695d4b6773b1cd2bafea1 /lib/libradius/Makefile | |
parent | 3962ef4305e41fefa0f7dfba4b66067f97d98d2c (diff) | |
download | src-47d7e8a96f52d91b1f0fe5184f0f5d88c897db38.tar.gz src-47d7e8a96f52d91b1f0fe5184f0f5d88c897db38.zip |
Fixed style of DPADD and LDADD assignments as per style.Makefile(5).
Notes
Notes:
svn path=/head/; revision=125503
Diffstat (limited to 'lib/libradius/Makefile')
-rw-r--r-- | lib/libradius/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libradius/Makefile b/lib/libradius/Makefile index 708a19c6d850..f2a766882eb2 100644 --- a/lib/libradius/Makefile +++ b/lib/libradius/Makefile @@ -28,8 +28,8 @@ LIB= radius SRCS= radlib.c INCS= radlib.h radlib_vs.h CFLAGS+= -Wall -DPADD+= ${LIBMD} -LDADD+= -lmd +DPADD= ${LIBMD} +LDADD= -lmd SHLIB_MAJOR= 1 MAN= libradius.3 radius.conf.5 |