diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-10-01 00:13:48 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-10-01 00:13:48 +0000 |
commit | 5a67135a0b169b768435ace7c7698f7709ba131f (patch) | |
tree | 601e4bdc79f2c9436140ad0d5dcf823755abbbfe /configure | |
parent | 42f1e0e49b9c162c211eba0115c5e7d1de861f44 (diff) | |
download | qemu-5a67135a0b169b768435ace7c7698f7709ba131f.zip |
automatic man page generation - BIOS installation
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@399 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -208,9 +208,14 @@ echo "NOTE: The object files are build at the place where configure is launched" exit 1 fi +mandir="$prefix/share/man" +sharedir="$prefix/share/qemu" + echo "Install prefix $prefix" -echo "Source path $source_path" +echo "Manual directory $mandir" +echo "BIOS directory $sharedir" echo "ELF interp prefix $interp_prefix" +echo "Source path $source_path" echo "C compiler $cc" echo "make $make" echo "host CPU $cpu" @@ -232,6 +237,9 @@ echo "# Automatically generated by configure - do not modify" > $config_mak echo "/* Automatically generated by configure - do not modify */" > $config_h echo "prefix=$prefix" >> $config_mak +echo "mandir=$mandir" >> $config_mak +echo "sharedir=$sharedir" >> $config_mak +echo "#define CONFIG_QEMU_SHAREDIR \"$sharedir\"" >> $config_h echo "MAKE=$make" >> $config_mak echo "CC=$cc" >> $config_mak if test "$have_gcc3_options" = "yes" ; then |