summaryrefslogtreecommitdiff
path: root/build/make/rtcd.pl
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2017-03-29 22:51:22 -0700
committerJames Zern <jzern@google.com>2017-03-29 22:51:22 -0700
commit7fde349b25479bcd54f0363e3e5539e8e8b9a7e9 (patch)
tree0e72e756f4723710b7451bfaf291a1c036ba003b /build/make/rtcd.pl
parentfc83fcb7c405ec9369c9f6ea2c83339d74fa034e (diff)
downloadlibvpx-7fde349b25479bcd54f0363e3e5539e8e8b9a7e9.tar
libvpx-7fde349b25479bcd54f0363e3e5539e8e8b9a7e9.tar.gz
libvpx-7fde349b25479bcd54f0363e3e5539e8e8b9a7e9.tar.bz2
libvpx-7fde349b25479bcd54f0363e3e5539e8e8b9a7e9.zip
rtcd,unit tests: fix ppc64 build
match ppc* in rtcd to ensure vsx is included Change-Id: I331a5d35e7160eeb69ebd14b98ba03ec5be6c600
Diffstat (limited to 'build/make/rtcd.pl')
-rwxr-xr-xbuild/make/rtcd.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/make/rtcd.pl b/build/make/rtcd.pl
index 58700895f..ce88e6480 100755
--- a/build/make/rtcd.pl
+++ b/build/make/rtcd.pl
@@ -420,7 +420,7 @@ if ($opts{arch} eq 'x86') {
} elsif ($opts{arch} eq 'armv8' || $opts{arch} eq 'arm64' ) {
@ALL_ARCHS = filter(qw/neon/);
arm;
-} elsif ($opts{arch} eq 'ppc' ) {
+} elsif ($opts{arch} =~ /^ppc/ ) {
@ALL_ARCHS = filter(qw/vsx/);
ppc;
} else {