Tiny Core Linux
Tiny Core Base => TCB Bugs => Topic started by: jls on March 07, 2010, 09:11:06 AM
-
[ -e /usr/local/tce.installed/audacious-1 ] && exit 0
this should be
[ -e /usr/local/tce.installed/audacious-1.5.1 ] && exit 0
-
It would appear that you mis-typed the program name when prompted.
$(which audaciuos) ] && audaciuos
should be audacious
-
-e /usr/local/tce.installed/audacious-1 ] && exit 0
this should be
[ -e /usr/local/tce.installed/audacious-1.5.1 ] && exit 0
-
line 13:
APPNAME="${EXTN%%.*}"
should be
APPNAME=$(getbasefile "$EXTN" 1)
-
OIC. But I thought the rule for extensions is not to use full version numbers. Perhaps not?
I have that function in tc-functions to handle such.
-
I was planning to wait until 3.o to rid the non-library extensions of their version numbers to avoid unneeded change, but since it affects TC functions I will go ahead and convert the remaining extensions. Audacious* has been converted.