spelling corrections and such

SVN revision: 1006
This commit is contained in:
Laurence J. Lane 1999-10-27 16:17:29 +00:00
parent 707998ad36
commit a58cb21577
3 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh
##############################################################################
# generates a file.menu format for Enlightenment out of a GNOME menu heirachy#
###############################################################################
# generates a file.menu format for Enlightenment out of a GNOME menu hierarchy#
#
# Copyright (C) 1999 Carsten Haitzler, Geoff Harrison and various contributors
#
@ -22,7 +22,7 @@
# THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
##############################################################################
###############################################################################
# if we dont have enough arguments
if [ $# -lt 3 ]; then

View File

@ -1,6 +1,6 @@
#!/bin/sh
##############################################################################
# generates a file.menu format for Enlightenment out of a KDE menu heirachy #
# generates a file.menu format for Enlightenment out of a KDE menu hierarchy #
#
# Copyright (C) 1999 Carsten Haitzler, Geoff Harrison and various contributors
#
@ -99,7 +99,7 @@ fi
if [ ! -d "$DIR" ]; then
exit
fi
# if the destination dir doesnt exist - create it
# if the destination dir doesn't exist - create it
if [ ! -d "$ODIR" ]; then
mkdir $ODIR
fi

View File

@ -1,6 +1,6 @@
#!/bin/sh
##############################################################################
# generates a file.menu format for Enlightenment out of menu heirachies #
# generates a file.menu format for Enlightenment out of menu hierarchies #
#
# Copyright (C) 1999 Carsten Haitzler, Geoff Harrison and various contributors
#
@ -60,7 +60,7 @@ if [ ! -f "$OUT" ]; then
fi
touch $OUT
# generate menu looking for Epplets - you mightn't have any te.. but expect to
# generate menu looking for Epplets - you might not have any yet.... but expect to
OUT=$OUT_DIR"/epplets.menu"
EPPLETS=`/bin/ls $EBIN"/"*.epplet 2> /dev/null | awk '{printf("%s ", $1);}'`
if [ -n "$EPPLETS" ]; then