changeset 5600:b6013d403208

ghostscript: configure_flags update.
author Jan Nieuwenhuizen <janneke@gnu.org>
date Tue, 22 Sep 2009 23:26:44 +0200
parents 093cf8092e61
children 3a0a53841c10
files gub/specs/ghostscript.py
diffstat 1 files changed, 3 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/gub/specs/ghostscript.py	Tue Sep 22 23:08:28 2009 +0200
+++ b/gub/specs/ghostscript.py	Tue Sep 22 23:26:44 2009 +0200
@@ -111,13 +111,10 @@
               '#define ARCH_SIZEOF_PTR %(sizeof_ptr)d' % locals ()),
              ], '%(builddir)s/obj/arch.h')
 
-    def configure_command (self):
-        return (target.AutoBuild.configure_command (self)
-                + self.configure_flags ())
-
     def configure_flags (self):
         # For --enable-compile-inits, see comment in compile()
-        return misc.join_lines ('''
+        return (target.AutoBuild.configure_flags (self)
+                + misc.join_lines ('''
 --enable-debug
 --with-drivers=FILES
 --without-pdftoraster
@@ -130,7 +127,7 @@
 --without-omni
 --without-jasper
 --disable-compile-inits
-''')
+'''))
 
     def configure (self):
         target.AutoBuild.configure (self)