diff options
author | fanquake <fanquake@gmail.com> | 2024-04-02 13:21:58 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2024-04-02 13:39:33 +0100 |
commit | fd8527a20ebc490df030b3a91c1161f00c8a29b6 (patch) | |
tree | e8767395c23443ceae4ccc3f2bbbc9f03392eb55 /contrib | |
parent | c407caa2972191d6a795228fd4bcdcd4be41d4a7 (diff) |
guix: remove errant leftover from #29648
We no longer build a lib, so a non-existent dir is causing builds to
fail.
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/guix/libexec/build.sh | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/contrib/guix/libexec/build.sh b/contrib/guix/libexec/build.sh index b301369ad9..bff25da132 100755 --- a/contrib/guix/libexec/build.sh +++ b/contrib/guix/libexec/build.sh @@ -321,12 +321,6 @@ mkdir -p "$DISTSRC" ( cd installed - case "$HOST" in - *mingw*) - mv --target-directory="$DISTNAME"/lib/ "$DISTNAME"/bin/*.dll - ;; - esac - # Prune libtool and object archives find . -name "lib*.la" -delete find . -name "lib*.a" -delete @@ -340,7 +334,6 @@ mkdir -p "$DISTSRC" # Split binaries and libraries from their debug symbols { find "${DISTNAME}/bin" -type f -executable -print0 - find "${DISTNAME}/lib" -type f -print0 } | xargs -0 -P"$JOBS" -I{} "${DISTSRC}/contrib/devtools/split-debug.sh" {} {} {}.dbg ;; esac |