Commit 913457c0 authored by Vincent Béron's avatar Vincent Béron Committed by Alexandre Julliard

Bring documentation in sync regarding expansion of environment

variables in the config file.
parent 8d0b4ea5
...@@ -472,7 +472,8 @@ currently lacking. We need: ...@@ -472,7 +472,8 @@ currently lacking. We need:
- C for the C:\ directory. Here we use the user's home directory, for most - C for the C:\ directory. Here we use the user's home directory, for most
applications do see C:\ as root-writeable directory of every windows applications do see C:\ as root-writeable directory of every windows
installation and this basically is it in the UNIX-user context. installation and this basically is it in the UNIX-user context.
Path=${HOME} Don't forget to identify environment variables as DOS ones (ie, surrounded by '%').
Path=%HOME%
- R for the CD-Rom drive. Specify your distribution's default CD-ROM mountpoint. - R for the CD-Rom drive. Specify your distribution's default CD-ROM mountpoint.
Path=/auto/cdrom Path=/auto/cdrom
- T for temporary storage. We do use /tmp/ (rationale: between process - T for temporary storage. We do use /tmp/ (rationale: between process
......
...@@ -991,7 +991,7 @@ ...@@ -991,7 +991,7 @@
<programlisting> <programlisting>
[Drive C] [Drive C]
"Path" = "${HOME}/wine" "Path" = "%HOME%/wine"
"Type" = "hd" "Type" = "hd"
"Label" = "MS-DOS" "Label" = "MS-DOS"
"Filesystem" = "win95" "Filesystem" = "win95"
...@@ -1075,7 +1075,9 @@ C:\ Root directory of primary disk drive ...@@ -1075,7 +1075,9 @@ C:\ Root directory of primary disk drive
You can also make use of environment variables like $HOME here, You can also make use of environment variables like $HOME here,
an example for using a <filename>mywinedrive</filename> an example for using a <filename>mywinedrive</filename>
directory in your home dir would be directory in your home dir would be
<programlisting>"Path" = "${HOME}/mywinedrive"</programlisting> <programlisting>"Path" = "%HOME%/mywinedrive"</programlisting>,
but don't forget to put it as a DOS environment variable,
ie surrounded by '%' signs rather than preceded by a '$'.
Don't forget to leave off the trailing slash! Don't forget to leave off the trailing slash!
</para> </para>
<para> <para>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment