Skip to content
Snippets Groups Projects
Commit 913457c0 authored by Vincent Béron's avatar Vincent Béron Committed by Alexandre Julliard
Browse files

Bring documentation in sync regarding expansion of environment

variables in the config file.
parent 8d0b4ea5
No related branches found
No related tags found
No related merge requests found
......@@ -472,7 +472,8 @@ currently lacking. We need:
- 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
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.
Path=/auto/cdrom
- T for temporary storage. We do use /tmp/ (rationale: between process
......
......@@ -991,7 +991,7 @@
<programlisting>
[Drive C]
"Path" = "${HOME}/wine"
"Path" = "%HOME%/wine"
"Type" = "hd"
"Label" = "MS-DOS"
"Filesystem" = "win95"
......@@ -1075,7 +1075,9 @@ C:\ Root directory of primary disk drive
You can also make use of environment variables like $HOME here,
an example for using a <filename>mywinedrive</filename>
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!
</para>
<para>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment