diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-05-14 15:11:31 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-05-14 15:11:31 +0000 |
commit | 2c632e62594d98a70ecc77ef4005a8aecff62d79 (patch) | |
tree | e73a82c3650ee7921b555ce454564d0e9887d612 | |
parent | fb029f0b36d0eee8eb2bb6827b2c0052e0c22d19 (diff) | |
download | postgresql-2c632e62594d98a70ecc77ef4005a8aecff62d79.tar.gz postgresql-2c632e62594d98a70ecc77ef4005a8aecff62d79.zip |
Fix 'set path' for csh, path -> $path.
Pierce Tyler
-rw-r--r-- | doc/src/sgml/installation.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/installation.sgml b/doc/src/sgml/installation.sgml index 31c9a105478..568f23e2e06 100644 --- a/doc/src/sgml/installation.sgml +++ b/doc/src/sgml/installation.sgml @@ -1,4 +1,4 @@ -<!-- $Header: /cvsroot/pgsql/doc/src/sgml/installation.sgml,v 1.45 2001/04/06 15:52:41 petere Exp $ --> +<!-- $Header: /cvsroot/pgsql/doc/src/sgml/installation.sgml,v 1.45.2.1 2001/05/14 15:11:31 momjian Exp $ --> <chapter id="installation"> <title><![%flattext-install-include[<productname>PostgreSQL</>]]> @@ -958,7 +958,7 @@ PATH=$PATH:/usr/local/pgsql/bin </programlisting> If you are using csh or tcsh, then use this command: <programlisting> -set path = ( /usr/local/pgsql/bin path ) +set path = ( /usr/local/pgsql/bin $path ) </programlisting> </para> |