summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure10
1 files changed, 9 insertions, 1 deletions
diff --git a/configure b/configure
index f680b6945b..443d648a74 100755
--- a/configure
+++ b/configure
@@ -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