-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert file to UTF-8. #50
base: master
Are you sure you want to change the base?
Conversation
Convert file to UTF-8.
Update LOGO
@@ -161,7 +161,7 @@ case "$host" in | |||
m68k-*-linux-*) ARCH="-D__M68K__ -D__LINUX__" ;; | |||
mips*-*-linux-*) ARCH="-D__MIPS__ -D__LINUX__" ;; | |||
powerpc-*-linux-*) ARCH="-D__PPC__ -D__LINUX__" ;; | |||
powerpc64-*-linux-*) ARCH="-D__PPC__ -D__LINUX__" ;; | |||
powerpc64*-*-linux-*) ARCH="-D__PPC__ -D__LINUX__" ;; | |||
powerpc64le-*-linux-*) ARCH="-D__PPC__ -D__LINUX__" ;; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line should be matched by the previous one, so you should be able to remove it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure, as it seems to be needed for 'powerpc64el'. (But line 165 isn't needed anymore with 'powerpc64*--linux-)' in place, I guess).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh, I have to learn this githup workflow ;-/
The code base has a number of other files using ISO-8859-1(5) encoding, including all four libraries' LOGO files :) |
No description provided.