From 504bbd8f12f895ce7aa06920b999498aa75abd59 Mon Sep 17 00:00:00 2001 From: Sam Hartman Date: Wed, 5 Feb 2014 13:57:46 -0500 Subject: [PATCH] Non-fatal error if m4 directory already exists --- builder | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/builder b/builder index addced7..4f7e477 100755 --- a/builder +++ b/builder @@ -68,7 +68,8 @@ def command_output(args) : def build(package): with current_directory(package): - os.makedirs( "m4") + try: os.makedirs( "m4") + except OsError: pass run_cmd(('autoreconf', '-i', '-f')) configure_command = [ './configure'] + configure_opts -- 2.1.4