QuickSet edition of Lucid Puppy

For efforts in internationalising Puppy and solving problems in this area
Post Reply
Message
Author
User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

QuickSet edition of Lucid Puppy

#1 Post by L18L »

found a small bug,
QuickSet edition users fix it, please right now

open a cosole

Code: Select all

geany /usr/local/petget/i18n
and then change line 28

Code: Select all

if [ "$DISTRO_BINARY_COMPAT" = "debian" ] || [ "$DISTRO_BINARY_COMPAT" = "ubuntu" ] 
to

Code: Select all

if [ "$distro" = "debian" ] || [ "$distro" = "ubuntu" ] 
or make it look like

Code: Select all

#if [ "$DISTRO_BINARY_COMPAT" = "debian" ] || [ "$DISTRO_BINARY_COMPAT" = "ubuntu" ] 
if [ "$distro" = "debian" ] || [ "$distro" = "ubuntu" ] 
This will avoid unnecessary attempts which try to download non-existing package descriptions which are only available for distros "ubuntu" and "debian".

L18L

Post Reply