diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-08-25T16·23+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-08-25T16·23+0000 |
commit | e5678b3435d44a610517246f95c7626d36965389 (patch) | |
tree | 5a7bb94b91db4012cb54fcf97faec72279782f3a /configure.ac | |
parent | e64c4f5742dbe830ab9048aeef386a4eb0c62622 (diff) |
* Map "ppc" to "powerpc" so that Linux on PowerPC will be reported as
"powerpc-linux".
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index b6d1212edb57..b14fa7e0864a 100644 --- a/configure.ac +++ b/configure.ac @@ -32,6 +32,9 @@ case $machine_name in i*86) machine_name=i686 ;; + ppc) + machine_name=powerpc + ;; *) if test "$cpu_name" != "unknown"; then machine_name=$cpu_name |