Bring documentation in sync regarding expansion of environment

variables in the config file.
This commit is contained in:
Vincent Béron 2003-09-02 18:17:23 +00:00 committed by Alexandre Julliard
parent 8d0b4ea585
commit 913457c0b2
2 changed files with 6 additions and 3 deletions

View File

@ -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

View File

@ -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>