diff options
Diffstat (limited to 'misc/localedata/pkg-install')
-rw-r--r-- | misc/localedata/pkg-install | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/localedata/pkg-install b/misc/localedata/pkg-install index 331e8296bd96..df8b1f66f8c6 100644 --- a/misc/localedata/pkg-install +++ b/misc/localedata/pkg-install @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh case "$2" in POST-INSTALL) ;; *) exit;; esac @@ -6,7 +6,7 @@ TARGET_DIR=${PKG_PREFIX}/share/compat/locale cd ${TARGET_DIR} while read dir; do - ${MKDIR} $dir + mkdir $dir done << EOF af_ZA.ISO8859-15 af_ZA.UTF-8 @@ -49,7 +49,7 @@ pt_PT.ISO8859-15 EOF while read src dest; do - ${LN} -s $src $dest + ln -s $src $dest done << EOF ../UTF-8/LC_CTYPE af_ZA.UTF-8/LC_CTYPE ../UTF-8/LC_CTYPE be_BY.UTF-8/LC_CTYPE |