- Fix wrong (but harmless) shebang lines.

- Don't use ${MKDIR} and ${LN} variables in pkg-install, since they aren't
  defined, and causes an error.
This commit is contained in:
Alejandro Pulver 2006-06-18 22:20:19 +00:00
parent 3be2ee09d0
commit a096f3da47
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=165714
2 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
#! /bin/sh #!/bin/sh
case "$2" in DEINSTALL) ;; *) exit;; esac case "$2" in DEINSTALL) ;; *) exit;; esac

View file

@ -1,4 +1,4 @@
#! /bin/sh #!/bin/sh
case "$2" in POST-INSTALL) ;; *) exit;; esac case "$2" in POST-INSTALL) ;; *) exit;; esac
@ -6,7 +6,7 @@ TARGET_DIR=${PKG_PREFIX}/share/compat/locale
cd ${TARGET_DIR} cd ${TARGET_DIR}
while read dir; do while read dir; do
${MKDIR} $dir mkdir $dir
done << EOF done << EOF
af_ZA.ISO8859-15 af_ZA.ISO8859-15
af_ZA.UTF-8 af_ZA.UTF-8
@ -49,7 +49,7 @@ pt_PT.ISO8859-15
EOF EOF
while read src dest; do while read src dest; do
${LN} -s $src $dest ln -s $src $dest
done << EOF done << EOF
../UTF-8/LC_CTYPE af_ZA.UTF-8/LC_CTYPE ../UTF-8/LC_CTYPE af_ZA.UTF-8/LC_CTYPE
../UTF-8/LC_CTYPE be_BY.UTF-8/LC_CTYPE ../UTF-8/LC_CTYPE be_BY.UTF-8/LC_CTYPE