diff options
author | Brendan Kehoe <brendan@cygnus> | 1996-02-08 23:41:30 +0000 |
---|---|---|
committer | Brendan Kehoe <brendan@cygnus> | 1996-02-08 23:41:30 +0000 |
commit | 5b75926643f0098b76ac39d83f4a734ecef9a6e0 (patch) | |
tree | 78eb90400b6af43ea96c3193d97d3b5de201f5ce /config.guess | |
parent | 4c494515851247e6869716f5a11ed2fa1c6c1eaa (diff) | |
download | gdb-5b75926643f0098b76ac39d83f4a734ecef9a6e0.zip gdb-5b75926643f0098b76ac39d83f4a734ecef9a6e0.tar.gz gdb-5b75926643f0098b76ac39d83f4a734ecef9a6e0.tar.bz2 |
actually sed off the X in the OSF1 version
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.guess b/config.guess index 1d88aab..7d033c4 100755 --- a/config.guess +++ b/config.guess @@ -54,7 +54,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in alpha:OSF1:[VX]*:*) # After 1.2, OSF1 uses "V1.3" for uname -r. # After 4.x, OSF1 uses "X4.x" for uname -r. - echo alpha-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^V//'` + echo alpha-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VX]//'` exit 0 ;; alpha:OSF1:*:*) # 1.2 uses "1.2" for uname -r. |