* gnu/packages/build-tools.scm (meson): Update to 0.50.0. * gnu/packages/patches/at-spi2-core-meson-compat.patch, gnu/packages/patches/totem-meson-compat.patch: New files. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/gnome.scm (totem)[source](patches): Add totem-meson.compat.patch. * gnu/packages/gtk.scm (at-spi2-core)[source](patches): New field.
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			431 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			431 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
Fix an error that occurs with Meson 0.50.0 and later:
 | 
						|
"ERROR: Subdir keyword must not be an absolute path".
 | 
						|
 | 
						|
--- a/src/meson.build	2019-03-15 00:10:26.882293850 +0100
 | 
						|
+++ b/src/meson.build	2019-03-15 00:10:54.312197229 +0100
 | 
						|
@@ -82,7 +82,7 @@
 | 
						|
 
 | 
						|
 install_headers(
 | 
						|
   headers,
 | 
						|
-  subdir: join_paths(totem_includedir, totem_api_path)
 | 
						|
+  install_dir: join_paths(totem_includedir, totem_api_path)
 | 
						|
 )
 | 
						|
 
 | 
						|
 libtotem_player_sources = files(
 |