-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(#30) Fix parallel Make with slibtool + other issues
- Loading branch information
1 parent
a928c84
commit 9c35f01
Showing
7 changed files
with
41 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/sh | ||
|
||
# This is a work around for a slibtool bug with --mode=execute | ||
# | ||
# With slibtool the gen_code binary is created in the .libs directory while GNU | ||
# libtool outputs in the same directory as the Makefile. This means that cp(1) | ||
# needs to be invoked with $(LIBTOOL) --mode=execute. | ||
# | ||
# However slibtool currently has a bug where the destination argument is dropped | ||
# which will result in the command failing. | ||
# | ||
# See https://bugs.gentoo.org/790770 | ||
|
||
set -eu | ||
|
||
mkdir -p ../../../bin | ||
cp "${1}" ../../../bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters