diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-05-19 23:08:12 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-05-19 23:08:12 +0000 |
commit | 9f5aed1bc51460b2a1f7c551f549d94620cfb50e (patch) | |
tree | 56977fc9f9a997d69811414c7390edc68a877628 /config.sub | |
parent | 61bbf6fe72c8634490553b320f1c7ee30a3fbfc1 (diff) | |
download | emacs-9f5aed1bc51460b2a1f7c551f549d94620cfb50e.tar.gz |
Fix unrecognized os error message.
Diffstat (limited to 'config.sub')
-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 ;; *) # Get rid of the `-' at the beginning of $os. - os=`echo $1 | sed 's/[^-]*-//'` + os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; |