summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorbdrewery <bdrewery@FreeBSD.org>2015-12-04 18:21:05 +0000
committerbdrewery <bdrewery@FreeBSD.org>2015-12-04 18:21:05 +0000
commit21a73065663169869a66e64c2abe0eb79d794343 (patch)
treee485b4e9e8b2808cc1bcd27bcbe06a3dc7af08d8 /share
parent2dfe4da949340502e028fbac90bf09eba18cda97 (diff)
downloadFreeBSD-src-21a73065663169869a66e64c2abe0eb79d794343.zip
FreeBSD-src-21a73065663169869a66e64c2abe0eb79d794343.tar.gz
MFC r290083:
Use more appropriate ${SHAREDIR} rather than /usr/share.
Diffstat (limited to 'share')
-rw-r--r--share/colldef/Makefile2
-rw-r--r--share/examples/smbfs/Makefile2
-rw-r--r--share/examples/smbfs/print/Makefile2
-rw-r--r--share/keys/pkg/trusted/Makefile2
-rw-r--r--share/mklocale/Makefile2
-rw-r--r--share/monetdef/Makefile2
-rw-r--r--share/msgdef/Makefile2
-rw-r--r--share/numericdef/Makefile2
-rw-r--r--share/sendmail/Makefile2
-rw-r--r--share/skel/Makefile4
-rw-r--r--share/timedef/Makefile2
11 files changed, 12 insertions, 12 deletions
diff --git a/share/colldef/Makefile b/share/colldef/Makefile
index 4b68f1e..b593894 100644
--- a/share/colldef/Makefile
+++ b/share/colldef/Makefile
@@ -42,7 +42,7 @@ LOCALES= bg_BG.CP1251 \
uk_UA.ISO8859-5 \
uk_UA.KOI8-U
-LOCALEDIR= /usr/share/locale
+LOCALEDIR= ${SHAREDIR}/locale
.SUFFIXES: .src .out
diff --git a/share/examples/smbfs/Makefile b/share/examples/smbfs/Makefile
index 9e5b99a..3867b80 100644
--- a/share/examples/smbfs/Makefile
+++ b/share/examples/smbfs/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$
NO_OBJ=
-BINDIR= /usr/share/examples/smbfs
+FILESDIR= ${SHAREDIR}/examples/smbfs
FILES= dot.nsmbrc
.PATH: ${.CURDIR}/../../../contrib/smbfs/examples
diff --git a/share/examples/smbfs/print/Makefile b/share/examples/smbfs/print/Makefile
index eb66815..67f4823 100644
--- a/share/examples/smbfs/print/Makefile
+++ b/share/examples/smbfs/print/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$
NO_OBJ=
-BINDIR= /usr/share/examples/smbfs/print
+FILESDIR= ${SHAREDIR}/examples/smbfs/print
FILES= lj6l ljspool printcap.sample tolj
.PATH: ${.CURDIR}/../../../../contrib/smbfs/examples/print
diff --git a/share/keys/pkg/trusted/Makefile b/share/keys/pkg/trusted/Makefile
index ee0d4c9..bc8d13a 100644
--- a/share/keys/pkg/trusted/Makefile
+++ b/share/keys/pkg/trusted/Makefile
@@ -4,7 +4,7 @@ NO_OBJ=
FILES= pkg.freebsd.org.2013102301
-FILESDIR= /usr/share/keys/pkg/trusted
+FILESDIR= ${SHAREDIR}/keys/pkg/trusted
FILESMODE= 644
.include <bsd.prog.mk>
diff --git a/share/mklocale/Makefile b/share/mklocale/Makefile
index b7f551e..ec79b5d 100644
--- a/share/mklocale/Makefile
+++ b/share/mklocale/Makefile
@@ -30,7 +30,7 @@ LOCALES= UTF-8 \
zh_HK.Big5HKSCS \
zh_TW.Big5
-LOCALEDIR= /usr/share/locale
+LOCALEDIR= ${SHAREDIR}/locale
.SUFFIXES: .src .out
diff --git a/share/monetdef/Makefile b/share/monetdef/Makefile
index 4385d87..9ee23c1 100644
--- a/share/monetdef/Makefile
+++ b/share/monetdef/Makefile
@@ -90,7 +90,7 @@ LOCALES= af_ZA.ISO8859-1 \
zh_HK.UTF-8 \
zh_TW.Big5
-LOCALEDIR= /usr/share/locale
+LOCALEDIR= ${SHAREDIR}/locale
.SUFFIXES: .src .out
diff --git a/share/msgdef/Makefile b/share/msgdef/Makefile
index 59a5383..ec87eee 100644
--- a/share/msgdef/Makefile
+++ b/share/msgdef/Makefile
@@ -70,7 +70,7 @@ LOCALES= af_ZA.ISO8859-1 \
zh_TW.Big5 \
zh_TW.UTF-8
-LOCALEDIR= /usr/share/locale
+LOCALEDIR= ${SHAREDIR}/locale
.SUFFIXES: .src .out
diff --git a/share/numericdef/Makefile b/share/numericdef/Makefile
index baf99de..5e691fe 100644
--- a/share/numericdef/Makefile
+++ b/share/numericdef/Makefile
@@ -44,7 +44,7 @@ LOCALES= af_ZA.ISO8859-1 \
uk_UA.KOI8-U \
zh_CN.eucCN
-LOCALEDIR= /usr/share/locale
+LOCALEDIR= ${SHAREDIR}/locale
.SUFFIXES: .src .out
diff --git a/share/sendmail/Makefile b/share/sendmail/Makefile
index 00427dc..cab9d5e 100644
--- a/share/sendmail/Makefile
+++ b/share/sendmail/Makefile
@@ -7,7 +7,7 @@ CFDIR= cf
CFDIRS!= (cd ${SENDMAIL_DIR}; find -L ${CFDIR} \( \( -name CVS -o -name .svn \) -prune \) -o -type d -print)
CFFILES!= (cd ${SENDMAIL_DIR}; find -L ${CFDIR} \( \( -name CVS -o -name .svn \) -prune \) -o -type f -print)
-DDIR= ${DESTDIR}/usr/share/sendmail
+DDIR= ${DESTDIR}${SHAREDIR}/sendmail
NO_OBJ=
diff --git a/share/skel/Makefile b/share/skel/Makefile
index ffe8015..9f8bf2f 100644
--- a/share/skel/Makefile
+++ b/share/skel/Makefile
@@ -5,8 +5,8 @@ FILESGROUPS= FILES1 FILES2
FILES1= dot.cshrc dot.login dot.login_conf dot.mailrc dot.profile \
dot.shrc
FILES2= dot.mail_aliases dot.rhosts
-FILES1DIR= /usr/share/skel
-FILES2DIR= /usr/share/skel
+FILES1DIR= ${SHAREDIR}/skel
+FILES2DIR= ${SHAREDIR}/skel
FILES1MODE= 0644
FILES2MODE= 0600
NO_OBJ=
diff --git a/share/timedef/Makefile b/share/timedef/Makefile
index 5a4060d..7269fb4 100644
--- a/share/timedef/Makefile
+++ b/share/timedef/Makefile
@@ -96,7 +96,7 @@ LOCALES= am_ET.UTF-8 \
zh_TW.Big5 \
zh_TW.UTF-8
-LOCALEDIR= /usr/share/locale
+LOCALEDIR= ${SHAREDIR}/locale
.SUFFIXES: .src .out
OpenPOWER on IntegriCloud