perl-Glib r1113 - trunk



Author: tsch
Date: Thu Mar 19 17:45:29 2009
New Revision: 1113
URL: http://svn.gnome.org/viewvc/perl-Glib?rev=1113&view=rev

Log:
Space-separate the libs and cflags strings from gobject and gthread to avoid
unwanted concatenation.  Patch by Daniel Macks.  (RT #44055)


Modified:
   trunk/ChangeLog
   trunk/Makefile.PL

Modified: trunk/Makefile.PL
==============================================================================
--- trunk/Makefile.PL	(original)
+++ trunk/Makefile.PL	Thu Mar 19 17:45:29 2009
@@ -130,8 +130,8 @@
 # add -I. and -I./build to the include path so we can find our own files.
 # this will be inherited by dependant modules, so they can find their
 # generated files.
-$glib->set_inc (' -I. ' . $glibcfg{cflags} . $gthreadcfg{cflags});
-$glib->set_libs ($glibcfg{libs} . $gthreadcfg{libs});
+$glib->set_inc (' -I. ' . $glibcfg{cflags} . ' ' . $gthreadcfg{cflags});
+$glib->set_libs ($glibcfg{libs} . ' ' . $gthreadcfg{libs});
 my $cwd = cwd();
 $glib->add_typemaps (map {File::Spec->catfile($cwd,$_)} 'typemap');
 $glib->add_pm (%pm_files);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]