Fix script to run on certain unix platforms.

This commit is contained in:
nelsonb%netscape.com 2000-07-17 22:34:30 +00:00
Родитель 7dc037f3a3
Коммит 8133fdd980
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -19,6 +19,7 @@
## Copyright (C) 1998, 2000 Michael J. Fromberger. All Rights Reserved.
##
## Contributor(s):
## Netscape Communications Corporation
##
## Alternatively, the contents of this file may be used under the
## terms of the GNU General Public License Version 2 or later (the
@ -32,7 +33,7 @@
## may use your version of this file under either the MPL or the
## GPL.
##
## $Id: build,v 1.1 2000/07/14 00:44:31 nelsonb%netscape.com Exp $
## $Id: build,v 1.2 2000/07/17 22:34:30 nelsonb%netscape.com Exp $
##
VERS="1.7p6"
@ -52,7 +53,8 @@ esac
for name in $files
do
echo -n "$name ... "
sname=`noext $name`
# sname=`noext $name`
sname=`basename $name .pod`
pod2man --section="$SECT" --center="$NAME" --release="$VERS" $name > $sname.$SECT
echo "(done)"
done