diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-08-17 03:53:37 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-08-17 03:53:37 +0000 |
commit | 91162057ae3fab184dcf25b2be78df788b9f7938 (patch) | |
tree | eea3096b83eec47a39800a20ac26bf4852537927 /src | |
parent | cf9ecbdabb85aec5a355b74794566d37f12c5229 (diff) | |
download | postgresql-91162057ae3fab184dcf25b2be78df788b9f7938.tar.gz postgresql-91162057ae3fab184dcf25b2be78df788b9f7938.zip |
From: Tom Lane <tgl@sss.pgh.pa.us>To: pgsql-patches@postgreSQL.org
Sigh. That tweak needs a tweak --- I didn't realize that ".DEFAULT"
processing ignores dependencies, at least in the version of gmake I
have here (not sure if it's a bug or not). Apply this patch aftermy previous one...
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/Makefile b/src/interfaces/Makefile index 5cb43e2c976..7b3df2a8aed 100644 --- a/src/interfaces/Makefile +++ b/src/interfaces/Makefile @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.11 1998/08/17 03:50:19 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.12 1998/08/17 03:53:37 scrappy Exp $ # #------------------------------------------------------------------------- @@ -21,7 +21,7 @@ ifeq ($(USE_PERL), true) endif -.DEFAULT all: $(perl-makefile-dep) +.DEFAULT all install clean dep depend distclean: $(perl-makefile-dep) $(MAKE) -C libpq $@ # $(MAKE) -C ecpg $@ ifeq ($(HAVE_Cplusplus), true) |