mirror of https://github.com/xemu-project/xemu.git
configure: add --version flag
Standard autoconf scripts include a --version flag so people can easily query things. Add this to qemu's configure so it too can integrate with build systems that have standard autotool helpers. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
This commit is contained in:
parent
c8f930c0ee
commit
99123e139d
|
@ -494,6 +494,8 @@ for opt do
|
||||||
case "$opt" in
|
case "$opt" in
|
||||||
--help|-h) show_help=yes
|
--help|-h) show_help=yes
|
||||||
;;
|
;;
|
||||||
|
--version|-V) exec cat $source_path/VERSION
|
||||||
|
;;
|
||||||
--prefix=*) prefix="$optarg"
|
--prefix=*) prefix="$optarg"
|
||||||
;;
|
;;
|
||||||
--interp-prefix=*) interp_prefix="$optarg"
|
--interp-prefix=*) interp_prefix="$optarg"
|
||||||
|
|
Loading…
Reference in New Issue