Changeset 82800 in vbox for trunk/src/VBox/ValidationKit/testmanager/db
- Timestamp:
- Jan 20, 2020 4:07:26 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 135762
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/db/Makefile.kmk
r82799 r82800 43 43 PSQL_DB_PORT := 5432 # Same for the port; use the default. 44 44 endif 45 PSQL_OPTS = -U postgres --set=ON_ERROR_STOP=1 --host=$(PSQL_DB_HOST) --port=$(PSQL_DB_PORT) 45 ifeq ($(PSQL_DB_USER),) 46 PSQL_DB_USER := postgres 47 endif 48 PSQL_OPTS = --user=$(PSQL_DB_USER) --set=ON_ERROR_STOP=1 --host=$(PSQL_DB_HOST) --port=$(PSQL_DB_PORT) 46 49 47 50 all: $(GENERATED_FILES)
Note:
See TracChangeset
for help on using the changeset viewer.