Fix key error in media/libvpx/moz.build
authorPeter Michael Green <plugwash@raspbian.org>
Thu, 11 May 2023 20:32:47 +0000 (20:32 +0000)
committerPeter Michael Green <plugwash@raspbian.org>
Thu, 11 May 2023 20:32:47 +0000 (20:32 +0000)
debian/changelog
media/libvpx/moz.build

index 6a92b1634177e8a38ef2e201d9cd81e7a57940de..cb95363bd5fa561f109dcd52820c3b57f42fa7d2 100644 (file)
@@ -45,6 +45,9 @@ thunderbird (1:102.9.0-1~deb10u1+rpi1) buster-staging; urgency=medium
     + Pass disable-jit from debian/rules
     + Nerf jit detection in s/moz.configure
 
+  [changes brought over from firefox-esr 102.9.0esr-1~deb10u1+rpi1 by Peter Michael Green]
+  * Fix key error in media/libvpx/moz.build
+
  -- Peter Michael Green <plugwash@raspbian.org>  Tue, 04 Apr 2023 01:50:41 +0000
 
 thunderbird (1:102.9.0-1~deb10u1) buster-security; urgency=medium
index d8c82b392a7f6180d4e57a42d41b5874d020ab29..491689727a4ee38d84c90303613ac752028624f2 100644 (file)
@@ -37,7 +37,7 @@ elif CONFIG['CPU_ARCH'] == 'x86':
     else: # Android, Linux, BSDs, etc.
         ASFLAGS += [ '-I%s/media/libvpx/config/linux/ia32/' % TOPSRCDIR ]
         LOCAL_INCLUDES += [ '/media/libvpx/config/linux/ia32/' ]
-elif CONFIG['CPU_ARCH'] == 'arm':
+elif (CONFIG['CPU_ARCH'] == 'arm') and ('ARM_EXPORTS' in files):
     EXPORTS.vpx += files['ARM_EXPORTS']
     ASFLAGS += [
         '-I%s/media/libvpx/config/linux/arm/' % TOPSRCDIR,