-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: move common parts out from this project
Per discussion in PR #138 and some private discussion with @omron93: We keep the "warning" Makefile-hack to inform users who have old clones of this repository and will do "git pull" (those users must explicitly init the git module).
- Loading branch information
Showing
6 changed files
with
12 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "common"] | ||
path = common | ||
url = https://github.com/sclorg/container-common-scripts.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
# Variables are documented in hack/build.sh. | ||
# Variables are documented in common/build.sh. | ||
BASE_IMAGE_NAME = postgresql | ||
VERSIONS = 9.4 9.5 | ||
OPENSHIFT_NAMESPACES = 9.2 | ||
|
||
# Include common Makefile code. | ||
include hack/common.mk | ||
# HACK: Ensure that 'git pull' for old clones doesn't cause confusion. | ||
# New clones should use '--recursive'. | ||
.PHONY: $(shell test -f common/common.mk || echo >&2 'Please do "git submodule update --init" first.') | ||
|
||
include common/common.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.