diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2015-09-18 23:49:32 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2015-09-18 23:49:32 +0000 |
commit | deb97713e003a627c3372748f02d703d89e62128 (patch) | |
tree | 92732628620a56a8f192cc701136a350dd021f7c /gnu | |
parent | e27c20e7fb7eb194dca656f39b8bac640fdc1229 (diff) | |
download | FreeBSD-src-deb97713e003a627c3372748f02d703d89e62128.zip FreeBSD-src-deb97713e003a627c3372748f02d703d89e62128.tar.gz |
Replace beforeinstall: handling with FILES.
This actually fixes some cases to respect LIBRARIES_ONLY.
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/groff/src/utils/indxbib/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/usr.bin/groff/src/utils/indxbib/Makefile b/gnu/usr.bin/groff/src/utils/indxbib/Makefile index b2c59a2..048fed0 100644 --- a/gnu/usr.bin/groff/src/utils/indxbib/Makefile +++ b/gnu/usr.bin/groff/src/utils/indxbib/Makefile @@ -5,9 +5,7 @@ SRCS= indxbib.cpp signal.c DPADD= ${LIBBIB} ${LIBGROFF} ${LIBM} LDADD= ${LIBBIB} ${LIBGROFF} -lm CLEANFILES= ${MAN} - -beforeinstall: - ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ - ${DIST_DIR}/eign ${DESTDIR}${SHAREDIR}/dict/ +FILES= ${DIST_DIR}/eign +FILESDIR= ${SHAREDIR}/dict/ .include <bsd.prog.mk> |