diff options
author | nectar <nectar@FreeBSD.org> | 2002-11-16 02:23:17 +0000 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 2002-11-16 02:23:17 +0000 |
commit | 846c25bc5c4d6b3675018c563f73579526ac83a9 (patch) | |
tree | 27892fc8eb3f71b142ce76262c7909d99182b96d /kerberos5 | |
parent | 34ba8a613201f98c15c061c320970542a413349b (diff) | |
download | FreeBSD-src-846c25bc5c4d6b3675018c563f73579526ac83a9.zip FreeBSD-src-846c25bc5c4d6b3675018c563f73579526ac83a9.tar.gz |
Repair buglet introduced with the last import of Heimdal:
`krb5-config --cflags' spewed an erroneous argument.
Reported by: Gabor@Zahemszky.HU
Approved by: re (jhb)
Diffstat (limited to 'kerberos5')
-rw-r--r-- | kerberos5/usr.bin/krb5-config/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kerberos5/usr.bin/krb5-config/Makefile b/kerberos5/usr.bin/krb5-config/Makefile index caae1b3..5725437 100644 --- a/kerberos5/usr.bin/krb5-config/Makefile +++ b/kerberos5/usr.bin/krb5-config/Makefile @@ -15,6 +15,7 @@ krb5-config: krb5-config.in -e "s,@LIB_dbopen\@,,g" \ -e "s,@LIB_des_appl\@,-lcrypto,g" \ -e "s,@LIBS\@,-lcom_err,g" \ + -e "s,@INCLUDE_des@,,g" \ ${.ALLSRC} > ${.TARGET} chmod +x ${.TARGET} |