aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Mount <peter@retep.org.uk>2000-05-15 21:32:51 +0000
committerPeter Mount <peter@retep.org.uk>2000-05-15 21:32:51 +0000
commit33bb1aee91f775f7bae071a10f0d6b40cd2f119d (patch)
tree15aa2f03e3741168724a7c2b6edd06f66c921595
parent6cb0fff31ddf5b9cb85c1c91d2575ce0a5c7fbf6 (diff)
downloadpostgresql-33bb1aee91f775f7bae071a10f0d6b40cd2f119d.tar.gz
postgresql-33bb1aee91f775f7bae071a10f0d6b40cd2f119d.zip
Fixed the message Makefile produces after compiling. It still said
about the old Driver class, not the new package. Spotted by Joseph Shraibman <jks@p1.selectacast.net>
-rw-r--r--src/interfaces/jdbc/CHANGELOG5
-rw-r--r--src/interfaces/jdbc/Makefile6
2 files changed, 8 insertions, 3 deletions
diff --git a/src/interfaces/jdbc/CHANGELOG b/src/interfaces/jdbc/CHANGELOG
index 0b09eb3ba09..2998ab33a2c 100644
--- a/src/interfaces/jdbc/CHANGELOG
+++ b/src/interfaces/jdbc/CHANGELOG
@@ -1,3 +1,8 @@
+Mon May 15 22:30:00 BST 2000 peter@retep.org.uk
+ - Fixed the message Makefile produces after compiling. It still said
+ about the old Driver class, not the new package. Spotted by
+ Joseph Shraibman <jks@p1.selectacast.net>
+
Thu May 04 11:38:00 BST 2000 petermount@it.maidstone.gov.uk
- Corrected incorrect date in CHANGELOG
- Fixed the ImageViewer example
diff --git a/src/interfaces/jdbc/Makefile b/src/interfaces/jdbc/Makefile
index 340c7bc7664..ce3030b4e9d 100644
--- a/src/interfaces/jdbc/Makefile
+++ b/src/interfaces/jdbc/Makefile
@@ -4,7 +4,7 @@
# Makefile for Java JDBC interface
#
# IDENTIFICATION
-# $Id: Makefile,v 1.21 2000/05/05 07:35:29 peter Exp $
+# $Id: Makefile,v 1.22 2000/05/15 21:32:51 peter Exp $
#
#-------------------------------------------------------------------------
@@ -57,11 +57,11 @@ msg:
@echo "place (under unix this could be /usr/local/lib) and add it"
@echo to the class path.
@echo
- @echo Then either add -Djdbc.drivers=postgresql.Driver to the
+ @echo Then either add -Djdbc.drivers=org.postgresql.Driver to the
@echo commandline when running your application, or edit the
@echo "properties file for your application (~/.hotjava/properties"
@echo "under unix for HotJava), and add a line containing"
- @echo jdbc.drivers=postgresql.Driver
+ @echo jdbc.drivers=org.postgresql.Driver
@echo
@echo More details are in the README file and in the main postgresql
@echo documentation.