Add missing slash to python install path.

This commit is contained in:
Bruce Momjian 2002-12-30 05:06:50 +00:00
parent 58b95441a4
commit e533e7dcf5
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ if sys.platform == "win32":
data_files = [ 'libpq.dll' ]
else:
include_dirs=['/usr/include/pgsql']
library_dirs=['usr/lib/pgsql']
library_dirs=['/usr/lib/pgsql']
optional_libs=['pq']
data_files = []