diff options
| author | Brooks Davis <brooks@FreeBSD.org> | 2025-08-04 09:33:40 +0000 |
|---|---|---|
| committer | Brooks Davis <brooks@FreeBSD.org> | 2025-08-04 12:58:46 +0000 |
| commit | 40a5abfc3f66e17827b2225cc9ed3c2ed4290df8 (patch) | |
| tree | 7615ed413d642be05b3a2afff4d1b4e96b1ed8b7 | |
| parent | 73ed0c7992fd5f6148374d5dbf5c7b37a2eba1a8 (diff) | |
krb5/include/Makefile: don't override *include targets
This was causing kdb.h, krad.h, and krb5.h to be installed twice.
PR: 288594
Pull Request: https://github.com/freebsd/freebsd-src/pull/1801
| -rw-r--r-- | krb5/include/Makefile | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/krb5/include/Makefile b/krb5/include/Makefile index a2d29fcb1530..6cd606faf605 100644 --- a/krb5/include/Makefile +++ b/krb5/include/Makefile @@ -37,19 +37,8 @@ osconf.h: rebuild-error-tables: ${K5_ET_HEADERS} -force: - -stage_includes: copies -SDESTDIR?= ${SYSROOT:U${DESTDIR}} - -.PHONY: force rebuild-error-tables osconf.h +.PHONY: rebuild-error-tables osconf.h .PATH: ${KRB5_DIR}/include/krb5 -copies: .PHONY .META - cd ${KRB5_DIR}/include; \ - ${INSTALL} -C ${TAG_ARGS:D${TAG_ARGS},dev} -o ${BINOWN} -g ${BINGRP} -m444 ${INCS} ${SDESTDIR}${INCLUDEDIR} - .include <bsd.prog.mk> - -installincludes: copies |
