diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-11 15:15:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-11 15:15:18 +0200 |
commit | d473e6e35120ad254a62301a89be26e5ad589752 (patch) | |
tree | 99f35e8d868502febe889de3713f37fad58e3fcb /libpod/linkmode/linkmode_static.go | |
parent | 01f747fdc3b601492d496536ced1386172c4e3d8 (diff) | |
parent | c21258b70ed91ab5ff8b1d345123fed1011a49c9 (diff) | |
download | podman-d473e6e35120ad254a62301a89be26e5ad589752.tar.gz podman-d473e6e35120ad254a62301a89be26e5ad589752.tar.bz2 podman-d473e6e35120ad254a62301a89be26e5ad589752.zip |
Merge pull request #5566 from openSUSE/static-binary
Add podman static build
Diffstat (limited to 'libpod/linkmode/linkmode_static.go')
-rw-r--r-- | libpod/linkmode/linkmode_static.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libpod/linkmode/linkmode_static.go b/libpod/linkmode/linkmode_static.go new file mode 100644 index 000000000..2db083f4a --- /dev/null +++ b/libpod/linkmode/linkmode_static.go @@ -0,0 +1,8 @@ +// +build static + +package linkmode + +// Linkmode returns the linking mode (static/dynamic) for the build. +func Linkmode() string { + return "static" +} |