diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1997-03-02 14:55:59 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1997-03-02 14:55:59 +0000 |
commit | 0a8553ab74342360e8e6a346270ad0059dcde0c1 (patch) | |
tree | 60813c714b27650514438960ffd9879647f68f7c /japanese/iv/scripts/configure | |
parent | Replace the complicated hack that caused my head to feel like I just (diff) |
Japanized interviews.
Submitted by: MIHIRA Yoshiro <sanpei@yy.cs.keio.ac.jp>
Diffstat (limited to 'japanese/iv/scripts/configure')
-rw-r--r-- | japanese/iv/scripts/configure | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/japanese/iv/scripts/configure b/japanese/iv/scripts/configure new file mode 100644 index 000000000000..018fe0d26437 --- /dev/null +++ b/japanese/iv/scripts/configure @@ -0,0 +1,16 @@ +#! /bin/sh + +cd ${WRKSRC} + +localconfig=src/config/InterViews/local.def + +sed -e "s:/usr/local/interviews:${PREFIX}/interviews:" \ + -e "s:/usr/X11R6:${X11BASE}:" \ + ${localconfig} > ${localconfig}.new +mv -f ${localconfig}.new ${localconfig} + +CPU=`make CPU`; export CPU +make Makefile XCONFIGDIR=${X11BASE}/lib/X11/config +make Makefiles +make depend + |