Fix key error in media/libvpx/moz.build
authorPeter Michael Green <plugwash@raspbian.org>
Sat, 1 Apr 2023 14:51:20 +0000 (14:51 +0000)
committerPeter Michael Green <plugwash@raspbian.org>
Sat, 1 Apr 2023 14:53:19 +0000 (14:53 +0000)
debian/changelog
media/libvpx/moz.build

index 3bade66df3069cfc5c7e8efa0f4d07967308e36f..6e25aa3ffa19687e018d69096f8f4083934f6b65 100644 (file)
@@ -28,7 +28,10 @@ firefox-esr (102.9.0esr-1~deb10u1+rpi1) buster-staging; urgency=medium
     + Pass disable-jit from debian/rules
     + Nerf jit detection in s/moz.configure
 
- -- Raspbian forward porter <root@raspbian.org>  Fri, 31 Mar 2023 03:48:54 +0000
+  [changes introduced in 102.9.0esr-1~deb10u1+rpi1 by Peter Michael Green]
+  * Fix key error in media/libvpx/moz.build
+
+ -- Peter Michael Green <plugwash@raspbian.org>  Sat, 01 Apr 2023 14:52:24 +0000
 
 firefox-esr (102.9.0esr-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,