diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-12-01 16:12:47 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-12-01 16:12:47 +0200 |
commit | 178d0a28bd7d69799828d1640a02731cb42f1b4d (patch) | |
tree | 0d764a84248799a99d2765f67f6b52a9193402ed | |
parent | 70903bb5c90bf27899fd68596a857aa67780af14 (diff) |
Cosmetic changes
-rw-r--r-- | boost/makefile | 4 | ||||
-rw-r--r-- | makefile | 8 | ||||
-rw-r--r-- | qt/makefile | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/boost/makefile b/boost/makefile index 27a5fb8..dcc5d32 100644 --- a/boost/makefile +++ b/boost/makefile @@ -10,12 +10,12 @@ dirs := common ifeq ($(db_id),mysql) dirs += mysql -else ifeq ($(db_id),oracle) -dirs += oracle else ifeq ($(db_id),sqlite) dirs += sqlite else ifeq ($(db_id),pgsql) dirs += pgsql +else ifeq ($(db_id),oracle) +dirs += oracle endif default := $(out_base)/ @@ -12,10 +12,6 @@ ifeq ($(db_id),mysql) dirs += mysql endif -ifeq ($(db_id),oracle) -dirs += oracle -endif - ifeq ($(db_id),sqlite) dirs += sqlite endif @@ -24,6 +20,10 @@ ifeq ($(db_id),pgsql) dirs += pgsql endif +ifeq ($(db_id),oracle) +dirs += oracle +endif + default := $(out_base)/ dist := $(out_base)/.dist test := $(out_base)/.test diff --git a/qt/makefile b/qt/makefile index 1345e70..e0ec91d 100644 --- a/qt/makefile +++ b/qt/makefile @@ -10,12 +10,12 @@ dirs := common ifeq ($(db_id),mysql) dirs += mysql -else ifeq ($(db_id),oracle) -dirs += oracle else ifeq ($(db_id),sqlite) dirs += sqlite else ifeq ($(db_id),pgsql) dirs += pgsql +else ifeq ($(db_id),oracle) +dirs += oracle endif default := $(out_base)/ |