From: Thomas G. Lockhart Date: Fri, 14 Jul 2000 15:30:56 +0000 (+0000) Subject: Change order of builds to get parser before commands. X-Git-Tag: REL7_1_BETA~938 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b4a3b6476ccc6c853d1d5d1ed1858452a50fe9e6;p=thirdparty%2Fpostgresql.git Change order of builds to get parser before commands. This will ensure building parse.h for commands, though this is also covered with other build rules. --- diff --git a/src/backend/Makefile b/src/backend/Makefile index 0b541a6b46d..f6d2411d1c7 100644 --- a/src/backend/Makefile +++ b/src/backend/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.60 2000/07/13 16:06:42 petere Exp $ +# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.61 2000/07/14 15:30:56 thomas Exp $ # #------------------------------------------------------------------------- @@ -12,8 +12,8 @@ subdir = src/backend top_builddir = ../.. include ../Makefile.global -DIRS := access bootstrap catalog commands executor lib libpq \ - main parser nodes optimizer port postmaster regex rewrite \ +DIRS := access bootstrap catalog parser commands executor lib libpq \ + main nodes optimizer port postmaster regex rewrite \ storage tcop utils ifdef TIOGA