fixed bug in avoid

problem relates with icon.res not compatible with gcc when trying to pup up the file size , fixed .
This commit is contained in:
peterpt 2019-12-15 08:35:48 +00:00 committed by GitHub
parent a2fe318066
commit f7c7788a23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
fatrat
View File

@ -5575,7 +5575,7 @@ echo '}' >> $path/temp/build.c
ls icons/icon.res >/dev/null 2>&1
if [ $? -eq 0 ]; then
$COMPILER -Wall -mwindows icons/icon.res $path/temp/build.c -o "$OUTPUTNAME"
$COMPILER -Wall -mwindows $path/temp/build.c -o "$OUTPUTNAME"
else
$COMPILER -Wall -mwindows $path/temp/build.c -o "$OUTPUTNAME"
fi