Bug 135170

Summary: /usr/share/aclocal/libart.m4:11: warning: underquoted definition of AM_PATH_LIBART
Product: [Fedora] Fedora Reporter: Marcel Mol <marcel>
Component: gnome-libsAssignee: Havoc Pennington <hp>
Status: CLOSED RAWHIDE QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 3   
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: gnome-libs-1.4.1.2.90-44 Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2004-10-13 17:02:26 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 123268    

Description Marcel Mol 2004-10-09 17:50:22 UTC
Description of problem:

running an autogen script results in the following message:
/usr/share/aclocal/libart.m4:11: warning: underquoted definition of
AM_PATH_LIBART


Additional info:
The following patch fixes the problem (solution is described in 
http://sources.redhat.com/automake/automake.html#Extending-aclocal)


--- /usr/share/aclocal/libart.m4.org    2004-10-09 19:51:04.211944968
+0200
+++ /usr/share/aclocal/libart.m4        2004-10-09 19:43:44.411092471
+0200
@@ -8,7 +8,7 @@
 dnl AM_PATH_LIBART([MINIMUM-VERSION, [ACTION-IF-FOUND [,
ACTION-IF-NOT-FOUND]]])
 dnl Test for LIBART, and define LIBART_CFLAGS and LIBART_LIBS
 dnl
-AC_DEFUN(AM_PATH_LIBART,
+AC_DEFUN([AM_PATH_LIBART],
 [dnl
 dnl Get the cflags and libraries from the libart-config script
 dnl

Comment 1 Miloslav Trmač 2004-10-13 17:02:26 UTC
Fixed in gnome-libs-1.4.1.2.90-44. Thanks for your report.