summaryrefslogtreecommitdiff
path: root/recipes/libtheora.recipe
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/libtheora.recipe')
-rw-r--r--recipes/libtheora.recipe9
1 files changed, 3 insertions, 6 deletions
diff --git a/recipes/libtheora.recipe b/recipes/libtheora.recipe
index 31913375..c73971af 100644
--- a/recipes/libtheora.recipe
+++ b/recipes/libtheora.recipe
@@ -20,15 +20,12 @@ class Recipe(recipe.Recipe):
files_bins = ['dvconnect', 'encodedv', 'dubdv']
files_devel = ['include/theora', 'lib/pkgconfig/theora.pc',
'lib/pkgconfig/theoraenc.pc', 'lib/pkgconfig/theoradec.pc']
- autoreconf = True
- autoreconf_sh = 'NOCONFIGURE=1 ./autogen.sh'
def prepare(self):
- if self.config.platform == Platform.WINDOWS:
- self.autoreconf = False
- self.override_libtool = False
- else:
+ if self.config.platform != Platform.WINDOWS:
# Don't build documentation even if doxygen is available
+ self.autoreconf = True
+ self.autoreconf_sh = 'NOCONFIGURE=1 ./autogen.sh'
self.configure_options += ' --disable-doc'
self.patches += [
'libtheora/0001-Add-option-to-disable-doc.patch',