summaryrefslogtreecommitdiff
path: root/net-im
diff options
context:
space:
mode:
authorClive Lin <clive@FreeBSD.org>2001-01-19 23:08:46 +0000
committerClive Lin <clive@FreeBSD.org>2001-01-19 23:08:46 +0000
commit15c945918e47d001732ff998fda84e44cdabe226 (patch)
tree2cdba1cec760be0776e163af29edb550538165c1 /net-im
parentOne line diff to indicate that freetype.h now lives under (diff)
Don't blindly install any .mo files into local base without
creating it first. Submitted by: bento
Notes
Notes: svn path=/head/; revision=37350
Diffstat (limited to 'net-im')
-rw-r--r--net-im/centericq/files/patch-ad6
1 files changed, 3 insertions, 3 deletions
diff --git a/net-im/centericq/files/patch-ad b/net-im/centericq/files/patch-ad
index 3442eda0238c..4a58f0c0d5eb 100644
--- a/net-im/centericq/files/patch-ad
+++ b/net-im/centericq/files/patch-ad
@@ -1,11 +1,11 @@
---- po/Makefile.in.orig Wed Nov 22 02:57:08 2000
-+++ po/Makefile.in Wed Nov 22 02:57:25 2000
+--- po/Makefile.in.orig Thu Nov 30 19:23:18 2000
++++ po/Makefile.in Sat Jan 20 06:54:57 2001
@@ -23,7 +23,7 @@
for i in $(LANGS); do msgfmt -o $$i.mo $$i.po; done
install:
- for i in $(LANGS); do install -D -m 644 $$i.mo ${datadir}/locale/$$i/LC_MESSAGES/centericq.mo; done
-+ for i in $(LANGS); do install -C -D -m 644 $$i.mo ${datadir}/locale/$$i/LC_MESSAGES/centericq.mo; done
++ for i in $(LANGS); do install -d -m 644 ${datadir}/locale/$$i/LC_MESSAGES; install -C -D -m 644 $$i.mo ${datadir}/locale/$$i/LC_MESSAGES/centericq.mo; done
clean:
# for i in $(LANGS); do $(RM) $$i.mo; done