Skip to content

Commit

Permalink
disable enable-shared on linux distros (#1229)
Browse files Browse the repository at this point in the history
This avoids problems with stuff linked to libgambit.so and not finding
it.
  • Loading branch information
ober committed May 21, 2024
1 parent 13f7282 commit 3836e32
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ amazonlinux:
--build-arg distro="amazonlinux" \
--build-arg packages="$(amazon_packages)" \
--build-arg repo="$(REPO)" \
--build-arg shared="yes" \
--build-arg shared="no" \
--build-arg with_db="YES" \
-t final $(ROOT_DIR)
docker tag final gerbil/amazonlinux:$(arch)-$(BRANCH)
Expand All @@ -169,7 +169,7 @@ centos:
--build-arg distro="centos" \
--build-arg packages="$(centos_packages)" \
--build-arg repo="$(REPO)" \
--build-arg shared="yes" \
--build-arg shared="no" \
--build-arg with_db="YES" \
-t final $(ROOT_DIR)
docker tag final gerbil/centos:$(arch)-$(BRANCH)
Expand All @@ -182,7 +182,7 @@ fedora:
--build-arg distro="fedora" \
--build-arg packages="$(fedora_packages)" \
--build-arg repo="$(REPO)" \
--build-arg shared="yes" \
--build-arg shared="no" \
--build-arg with_db="YES" \
-t final $(ROOT_DIR)
docker tag final gerbil/fedora:$(arch)-$(BRANCH)
Expand All @@ -196,7 +196,7 @@ ubuntu:
--build-arg distro="ubuntu" \
--build-arg packages="$(ubuntu_packages)" \
--build-arg repo="$(REPO)" \
--build-arg shared="yes" \
--build-arg shared="no" \
--build-arg with_db="YES" \
-t final $(ROOT_DIR)
docker tag final gerbil/ubuntu:$(arch)-$(BRANCH)
Expand All @@ -210,7 +210,7 @@ debian:
--build-arg distro="debian" \
--build-arg packages="$(debian_packages)" \
--build-arg repo="$(REPO)" \
--build-arg shared="yes" \
--build-arg shared="no" \
--build-arg with_db="YES" \
-t final $(ROOT_DIR)
docker tag final gerbil/ubuntu:$(arch)-$(BRANCH)
Expand Down

0 comments on commit 3836e32

Please sign in to comment.