]> spindle.queued.net Git - midori/commitdiff
Add compatibility options to build script to support packaging
authorChristian Dywan <christian@twotoasts.de>
Sat, 31 Oct 2009 21:44:30 +0000 (22:44 +0100)
committerChristian Dywan <christian@twotoasts.de>
Sat, 31 Oct 2009 21:44:30 +0000 (22:44 +0100)
Debian CDBS for example can use the 'configure' script in a way
that doesn't require waf specific rules, but it insists on passing
--build and --disable-maintainer-mode.

wscript

diff --git a/wscript b/wscript
index fad14bdb9704c56b8f7dc352397570b96c0ae41b..1d380a87e117ec717c0d3e8d5460ee33c95705f1 100644 (file)
--- a/wscript
+++ b/wscript
@@ -343,6 +343,10 @@ def set_options (opt):
     add_enable_option ('addons', 'building of extensions', group)
     add_enable_option ('hildon', 'Maemo integration', group, disable=not is_maemo ())
 
+    # Provided for compatibility
+    opt.add_option ('--build', help='Ignored')
+    opt.add_option ('--disable-maintainer-mode', help='Ignored')
+
 def build (bld):
     def image_to_win32ico (task):
         'Converts an image to a Win32 ico'
@@ -380,7 +384,7 @@ def build (bld):
 
     if bld.env['docs']:
         bld.install_files ('${DOCDIR}/' + APPNAME + '/', \
-            'AUTHORS ChangeLog COPYING EXPAT README TRANSLATE')
+            'AUTHORS COPYING ChangeLog EXPAT README')
 
     # Install default configuration
     bld.install_files ('${SYSCONFDIR}/xdg/' + APPNAME + '/', 'data/search')