guix: ant-build-system: Put dummy project-name into default build.xml.
Without this, ant reported error messages like Target "tests" does not exist in the project "null". Simple using the jar-name is a good compromise. * guix/build/ant-build-system.scm (default-build.xml): Add attribute to sxml expression.
This commit is contained in:
		
							parent
							
								
									a331623931
								
							
						
					
					
						commit
						cbad3570db
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
					@ -43,7 +43,8 @@
 | 
				
			||||||
  (call-with-output-file "build.xml"
 | 
					  (call-with-output-file "build.xml"
 | 
				
			||||||
    (lambda (port)
 | 
					    (lambda (port)
 | 
				
			||||||
      (sxml->xml
 | 
					      (sxml->xml
 | 
				
			||||||
       `(project (@ (basedir "."))
 | 
					       `(project (@ (basedir ".")
 | 
				
			||||||
 | 
					                    (name ,jar-name))
 | 
				
			||||||
                 (property (@ (name "classes.dir")
 | 
					                 (property (@ (name "classes.dir")
 | 
				
			||||||
                              (value "${basedir}/build/classes")))
 | 
					                              (value "${basedir}/build/classes")))
 | 
				
			||||||
                 (property (@ (name "manifest.dir")
 | 
					                 (property (@ (name "manifest.dir")
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue