From 424e91a47d7793f18ed9f4aa2a3bce396a26354e Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 31 Oct 2013 15:27:54 -0700 Subject: [PATCH] Fix fallback configuration flags --- configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 244014caab257..ec14dc0dbcc48 100755 --- a/configure +++ b/configure @@ -401,9 +401,9 @@ valopt mandir "${CFG_PREFIX}/share/man" "install man pages in PATH" valopt libdir "${CFG_PREFIX}/lib" "install libraries" #Deprecated opts to keep compatibility -valopt build-triple "${DEFAULT_BUILD}" "LLVM build triple" -valopt host-triples "${CFG_BUILD}" "LLVM host triples" -valopt target-triples "${CFG_HOST}" "LLVM target triples" +valopt build-triple "${CFG_BUILD}" "LLVM build triple" +valopt host-triples "${CFG_HOST}" "LLVM host triples" +valopt target-triples "${CFG_TARGET}" "LLVM target triples" # Validate Options step_msg "validating $CFG_SELF args"