Skip to content

Commit d9decf3

Browse files
committed
configure: Remove legacy triple flags.
1 parent 12222f9 commit d9decf3

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

configure

-18
Original file line numberDiff line numberDiff line change
@@ -400,11 +400,6 @@ valopt infodir "${CFG_PREFIX}/share/info" "install additional info"
400400
valopt mandir "${CFG_PREFIX}/share/man" "install man pages in PATH"
401401
valopt libdir "${CFG_PREFIX}/lib" "install libraries"
402402

403-
#Deprecated opts to keep compatibility
404-
valopt build-triple "" "LLVM build triple"
405-
valopt host-triples "" "LLVM host triples"
406-
valopt target-triples "" "LLVM target triples"
407-
408403
# Validate Options
409404
step_msg "validating $CFG_SELF args"
410405
validate_opt
@@ -601,19 +596,6 @@ then
601596
fi
602597

603598
# a little post-processing of various config values
604-
605-
# XXX: Support for deprecated syntax, should be dropped.
606-
if [ ! -z "$CFG_BUILD_TRIPLE" ]; then
607-
CFG_BUILD=${CFG_BUILD_TRIPLE}
608-
fi
609-
if [ ! -z "$CFG_HOST_TRIPLES" ]; then
610-
CFG_HOST=${CFG_HOST_TRIPLES}
611-
fi
612-
if [ ! -z "$CFG_TARGET_TRIPLES" ]; then
613-
CFG_TARGET=${CFG_TARGET_TRIPLES}
614-
fi
615-
616-
617599
CFG_PREFIX=${CFG_PREFIX%/}
618600
CFG_MANDIR=${CFG_MANDIR%/}
619601
CFG_HOST="$(echo $CFG_HOST | tr ',' ' ')"

0 commit comments

Comments
 (0)