X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=builder;h=4f7e477c0f0dafc5f6ae179a4dd2fff6eca2cfca;hb=504bbd8f12f895ce7aa06920b999498aa75abd59;hp=369db0e063f6a734be68c2e31d5dfc84641a4755;hpb=19be607e6baf32a6cb60d1a8812d753930d55d9e;p=moonshot.git diff --git a/builder b/builder index 369db0e..4f7e477 100755 --- a/builder +++ b/builder @@ -68,6 +68,8 @@ def command_output(args) : def build(package): with current_directory(package): + try: os.makedirs( "m4") + except OsError: pass run_cmd(('autoreconf', '-i', '-f')) configure_command = [ './configure'] + configure_opts @@ -140,8 +142,7 @@ prefix = options.prefix root_command = options.root_command dist = options.dist configure_opts = ['--prefix', prefix, - "LDFLAGS=-Wl,-L"+prefix+"/lib -Wl,-L/usr/lib/freeradius" - + " -Wl,-rpath="+prefix+"/lib", + "LDFLAGS=-Wl,-L"+prefix+"/lib -Wl,-rpath="+prefix+"/lib", 'CPPFLAGS=-I '+prefix+'/include', '--with-system-libtool', '--with-system-libltdl', '--enable-tls', '--with-gssapi='+prefix,