summaryrefslogtreecommitdiff
path: root/mkosi.build
diff options
context:
space:
mode:
authorDaan De Meyer <daan.j.demeyer@gmail.com>2023-02-21 12:25:43 +0100
committerDaan De Meyer <daan.j.demeyer@gmail.com>2023-02-21 13:01:30 +0100
commitf88f720a8b976184a2adc1e873059aa920fc773b (patch)
treebf1d728cc08ca260f576cac82ebd4649b6a120f7 /mkosi.build
parent8d8337da5e9f08537c40059c90da2362d0359444 (diff)
downloadsystemd-f88f720a8b976184a2adc1e873059aa920fc773b.tar.gz
mkosi: Drop ld workaround
Build scripts will always run in an environment with /etc/ available now, so we don't need this workaround anymore.
Diffstat (limited to 'mkosi.build')
-rwxr-xr-xmkosi.build12
1 files changed, 0 insertions, 12 deletions
diff --git a/mkosi.build b/mkosi.build
index b9ee0f1ae2..d406e1b003 100755
--- a/mkosi.build
+++ b/mkosi.build
@@ -8,18 +8,6 @@ set -e
ASAN_OPTIONS=strict_string_checks=1:detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1:disable_coredump=0:use_madv_dontdump=1
UBSAN_OPTIONS=print_stacktrace=1:print_summary=1:halt_on_error=1
-# On Fedora "ld" is (unfortunately — if you ask me) managed via
-# "alternatives". Since we'd like to support building images in environments
-# with only /usr/ around (e.g. mkosi's UsrOnly=1 option), we have the problem
-# that /usr/bin/ld is a symlink that points to a non-existing file in
-# /etc/alternative/ in this mode. Let's work around this for now by manually
-# redirect "ld" to "ld.bfd", i.e. circumventing the /usr/bin/ld symlink.
-if [ ! -x /usr/bin/ld ] && [ -x /usr/bin/ld.bfd ]; then
- mkdir -p "$HOME"/bin
- ln -s /usr/bin/ld.bfd "$HOME"/bin/ld
- PATH="$HOME/bin:$PATH"
-fi
-
# If mkosi.builddir/ exists mkosi will set $BUILDDIR to it, let's then use it
# as out-of-tree build dir. Otherwise, let's make up our own builddir.
[ -z "$BUILDDIR" ] && BUILDDIR="$PWD"/build