Changes between Initial Version and Version 2 of Ticket #16652
- Timestamp:
- Aug 20, 2011, 2:11:15 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16652 – Description
initial v2 1 1 Currently the PostGIS instructions indicate the user should do this: 2 {{{ 2 3 $ psql -d template_postgis -f $POSTGIS_SQL_PATH/postgis.sql 3 4 $ psql -d template_postgis -f $POSTGIS_SQL_PATH/spatial_ref_sys.sql 4 5 }}} 5 6 it errors with this: 7 {{{ 6 8 /usr/share/postgresql/8.4/contrib/postgis-1.5.2/postgis.sql: No such file or directory 7 9 }}} 8 10 9 11 The reason for the directory not being found, is because the postgis.sql & spatial_ref_sys.sql files are located in a 1.5 folder instead of a 1.5.2 folder: 12 {{{ 10 13 /usr/share/postgresql/8.4/contrib/postgis-1.5/ 11 14 }}} 12 15 Eric Jarvies 13 16