diff options
author | Thomas M. DuBuisson <tommd@muse.dev> | 2021-09-22 19:05:06 -0700 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-09-23 12:57:04 +0200 |
commit | 33363aeb4d56dbc370f011bc48effcb7151161a8 (patch) | |
tree | 089201616bb0f13cfe81bff8f1a5911dae9f1709 | |
parent | e75be2c4b20ced981606c1338759ac3dc6edc309 (diff) | |
download | curl-33363aeb4d56dbc370f011bc48effcb7151161a8.tar.gz |
ci: update Lift config to match requirements of curl build
Also renamed Muse -> Lift, the new tool name.
Closes #7761
-rw-r--r-- | .lift/config.toml (renamed from .muse/config.toml) | 2 | ||||
-rwxr-xr-x | .lift/setup.sh | 4 | ||||
-rwxr-xr-x | .muse/setup.sh | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/.muse/config.toml b/.lift/config.toml index 4e5b5cc63..7a5e01f4c 100644 --- a/.muse/config.toml +++ b/.lift/config.toml @@ -1,3 +1,3 @@ ignore = [ "DEAD_STORE" ] build = "make" -setup = ".muse/setup.sh" +setup = ".lift/setup.sh" diff --git a/.lift/setup.sh b/.lift/setup.sh new file mode 100755 index 000000000..a9bc873b3 --- /dev/null +++ b/.lift/setup.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash +./buildconf +./configure --with-openssl +echo "Ran the setup script for Lift including autoconf and executing ./configure --with-openssl" diff --git a/.muse/setup.sh b/.muse/setup.sh deleted file mode 100755 index 55872d594..000000000 --- a/.muse/setup.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -./buildconf -./configure -echo "Ran the setup script for muse including autoconf and executing ./configure" |