diff options
author | asami <asami@FreeBSD.org> | 1998-11-19 17:07:55 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-11-19 17:07:55 +0800 |
commit | 839a42ab3a88c3e736172d1fccce55019301c60c (patch) | |
tree | f25100c4771862fd57f7e521d65f7ef168321dbe /japanese | |
parent | d25dc5150172d079528e11b33d7beb0dc6878a06 (diff) | |
download | freebsd-ports-gnome-839a42ab3a88c3e736172d1fccce55019301c60c.tar.gz freebsd-ports-gnome-839a42ab3a88c3e736172d1fccce55019301c60c.tar.zst freebsd-ports-gnome-839a42ab3a88c3e736172d1fccce55019301c60c.zip |
Oops, tried to use a variable before defining it.
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/truetypefonts/pkg-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/japanese/truetypefonts/pkg-install b/japanese/truetypefonts/pkg-install index d10ce0719f9f..75de543f3800 100644 --- a/japanese/truetypefonts/pkg-install +++ b/japanese/truetypefonts/pkg-install @@ -1,9 +1,9 @@ #!/bin/sh +FONTDIR=${PKG_PREFIX}/lib/X11/fonts/truetype if [ "$2" = "PRE-INSTALL" ]; then echo "Please add ${FONTDIR} to your /etc/XF86Config file" exit 0 fi -FONTDIR=${PKG_PREFIX}/lib/X11/fonts/truetype cd ${FONTDIR} touch fonts.dir sed -e '/-watanabe-/d' -e '/-wadalab-/d' fonts.dir > fonts.dir.tmp |