aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-05-19 23:08:12 +0000
committerRichard M. Stallman1994-05-19 23:08:12 +0000
commit9f5aed1bc51460b2a1f7c551f549d94620cfb50e (patch)
tree56977fc9f9a997d69811414c7390edc68a877628
parent61bbf6fe72c8634490553b320f1c7ee30a3fbfc1 (diff)
downloademacs-9f5aed1bc51460b2a1f7c551f549d94620cfb50e.tar.gz
emacs-9f5aed1bc51460b2a1f7c551f549d94620cfb50e.zip
Fix unrecognized os error message.
-rwxr-xr-xconfig.sub2
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 ;;