Skip to content

Commit ec0d028

Browse files
author
James William Pye
committed
Use set not setenv.
Also, reference python3.1 instead of 3.0.
1 parent 324c49b commit ec0d028

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

postgresql/documentation/admin.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,16 @@ installed and used without them. When a source installation is performed on
4343

4444
In order to enable the compilation of extensions, set the environment variable
4545
``PY_BUILD_EXTENSIONS`` to '1' before executing the ``setup.py``
46-
script::
46+
script in the prompt::
4747

48-
C:\-> setenv PY_BUILD_EXTENSIONS 1
49-
C:\-> c:\python30\python setup.py install
48+
C:\-> set PY_BUILD_EXTENSIONS=1
49+
C:\-> c:\python31\python setup.py install
5050

51-
Or, more likely, compile using mingw32::
51+
Or, compile using mingw32::
5252

53-
C:\-> setenv PY_BUILD_EXTENSIONS 1
54-
C:\-> c:\python30\python setup.py build_ext --compiler=mingw32
55-
C:\-> c:\python30\python setup.py install
53+
C:\-> set PY_BUILD_EXTENSIONS=1
54+
C:\-> c:\python31\python setup.py build_ext --compiler=mingw32
55+
C:\-> c:\python31\python setup.py install
5656

5757
See http://www.mingw.org/ to get the compiler.
5858

0 commit comments

Comments
 (0)