changeset in /hg/icedtea: * acinclude.m4: Match powerpc-*-* to p...

Christian Thalinger twisti at complang.tuwien.ac.at
Wed Sep 12 01:30:56 PDT 2007


changeset f10fc5307c27 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=f10fc5307c27
description:
	* acinclude.m4: Match powerpc-*-* to ppc and powerpc64-*-* to ppc64
	(missed in last commit).

diffstat:

1 file changed, 5 insertions(+), 1 deletion(-)
acinclude.m4 |    6 +++++-

diffs (18 lines):

diff -r 094da98b9aa7 -r f10fc5307c27 acinclude.m4
--- a/acinclude.m4	Wed Sep 12 10:12:27 2007 +0200
+++ b/acinclude.m4	Wed Sep 12 10:30:41 2007 +0200
@@ -9,9 +9,13 @@ AC_DEFUN([SET_ARCH_DIRS],
       BUILD_ARCH_DIR=i586
       INSTALL_ARCH_DIR=i386
       ;;
-    powerpc*-*-*)
+    powerpc-*-*)
       BUILD_ARCH_DIR=ppc
       INSTALL_ARCH_DIR=ppc
+      ;;
+    powerpc64-*-*)
+      BUILD_ARCH_DIR=ppc64
+      INSTALL_ARCH_DIR=ppc64
       ;;
     s390*-*-*)
       BUILD_ARCH_DIR=s390



More information about the distro-pkg-dev mailing list