diff options
| author | Richard M. Stallman | 1994-05-19 23:08:12 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-19 23:08:12 +0000 |
| commit | 9f5aed1bc51460b2a1f7c551f549d94620cfb50e (patch) | |
| tree | 56977fc9f9a997d69811414c7390edc68a877628 | |
| parent | 61bbf6fe72c8634490553b320f1c7ee30a3fbfc1 (diff) | |
| download | emacs-9f5aed1bc51460b2a1f7c551f549d94620cfb50e.tar.gz emacs-9f5aed1bc51460b2a1f7c551f549d94620cfb50e.zip | |
Fix unrecognized os error message.
| -rwxr-xr-x | config.sub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.sub b/config.sub index ffce5595668..00cd45dab53 100755 --- a/config.sub +++ b/config.sub | |||
| @@ -596,7 +596,7 @@ case $os in | |||
| 596 | ;; | 596 | ;; |
| 597 | *) | 597 | *) |
| 598 | # Get rid of the `-' at the beginning of $os. | 598 | # Get rid of the `-' at the beginning of $os. |
| 599 | os=`echo $1 | sed 's/[^-]*-//'` | 599 | os=`echo $os | sed 's/[^-]*-//'` |
| 600 | echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 | 600 | echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 |
| 601 | exit 1 | 601 | exit 1 |
| 602 | ;; | 602 | ;; |