#3081 closed task (invalid)
gcc-4.6.2 : EOL indicators missing in 'configparms'
Reported by: | matthew deren | Owned by: | |
---|---|---|---|
Priority: | normal | Milestone: | 7.1 |
Component: | Book | Version: | SVN |
Severity: | normal | Keywords: | configparms missing separator |
Cc: |
Description
Page 37 / LFS
Example throws 'missing separator' error:
case `uname -m` in i?86) echo "CFLAGS += -march=i486 -mtune=native" > configparms ;; esac
Should be:
case `uname -m` in \ i?86) echo "CFLAGS += -march=i486 -mtune=native" > configparms ;; \ esac
Thanks and keep up the great work!
Note:
See TracTickets
for help on using tickets.
CORRECTION: this is not for gcc, but rather glibc.