Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci-scripts/release/arm64-unknown-linux-nightly.bash
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ ASSET_DESCRIPTION="https://github.com/${GITHUB_REPOSITORY}"
# Build application installation
echo -e "\e[34mBuilding ${APPLICATION_NAME}...\e[0m"
make install prefix="${BUILD_DIR}" arch=${CPU} \
version="${APPLICATION_VERSION}" static=true linker=bfd
version="${APPLICATION_VERSION}" static=true

# Package it all up
echo -e "\e[34mCreating .tar.gz of ${APPLICATION_NAME}...\e[0m"
Expand Down
2 changes: 1 addition & 1 deletion .ci-scripts/release/arm64-unknown-linux-release.bash
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ ASSET_DESCRIPTION="https://github.com/${GITHUB_REPOSITORY}"
# Build application installation
echo -e "\e[34mBuilding ${APPLICATION_NAME}...\e[0m"
make install prefix="${BUILD_DIR}" arch=${CPU} \
version="${APPLICATION_VERSION}" static=true linker=bfd
version="${APPLICATION_VERSION}" static=true

# Package it all up
echo -e "\e[34mCreating .tar.gz of ${APPLICATION_NAME}...\e[0m"
Expand Down
2 changes: 1 addition & 1 deletion .ci-scripts/release/x86-64-unknown-linux-nightly.bash
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ ASSET_DESCRIPTION="https://github.com/${GITHUB_REPOSITORY}"
# Build application installation
echo -e "\e[34mBuilding ${APPLICATION_NAME}...\e[0m"
make install prefix="${BUILD_DIR}" arch=${ARCH} \
version="${APPLICATION_VERSION}" static=true linker=bfd
version="${APPLICATION_VERSION}" static=true

# Package it all up
echo -e "\e[34mCreating .tar.gz of ${APPLICATION_NAME}...\e[0m"
Expand Down
2 changes: 1 addition & 1 deletion .ci-scripts/release/x86-64-unknown-linux-release.bash
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ ASSET_DESCRIPTION="https://github.com/${GITHUB_REPOSITORY}"
# Build application installation
echo -e "\e[34mBuilding ${APPLICATION_NAME}...\e[0m"
make install prefix="${BUILD_DIR}" arch=${ARCH} \
version="${APPLICATION_VERSION}" static=true linker=bfd
version="${APPLICATION_VERSION}" static=true

# Package it all up
echo -e "\e[34mCreating .tar.gz of ${APPLICATION_NAME}...\e[0m"
Expand Down
5 changes: 0 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ destdir ?= ${prefix}
config ?= release
arch ?=
static ?= false
linker ?=

BUNDLE := corral

Expand Down Expand Up @@ -42,10 +41,6 @@ ifeq ($(static),true)
LINKER += --static
endif

ifneq ($(linker),)
LINKER += --link-ldcmd=$(linker)
endif

# Default to version from `VERSION` file but allowing overridding on the
# make command line like:
# make version="nightly-19710702"
Expand Down
Loading