From: Bruce Momjian Date: Mon, 14 May 2001 15:11:31 +0000 (+0000) Subject: Fix 'set path' for csh, path -> $path. X-Git-Tag: REL7_1_2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2c632e62594d98a70ecc77ef4005a8aecff62d79;p=thirdparty%2Fpostgresql.git Fix 'set path' for csh, path -> $path. Pierce Tyler --- 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 @@ - + <![%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>