diff options
author | Dmitry V. Levin <ldv@strace.io> | 2023-02-05 08:00:00 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@strace.io> | 2023-02-05 08:00:00 +0000 |
commit | 0d1c62eb4733644bda03760182c395a903295a3e (patch) | |
tree | 59c53a537a8e3e06d2b458d43b74455445784549 /.github | |
parent | 91951acae71f2cc596ba409fde3e08c746a18551 (diff) | |
download | pam-0d1c62eb4733644bda03760182c395a903295a3e.tar.gz pam-0d1c62eb4733644bda03760182c395a903295a3e.tar.bz2 pam-0d1c62eb4733644bda03760182c395a903295a3e.zip |
ci: make VENDORDIR based on $prefix
* ci/run-build-and-tests.sh: Accept VENDORDIR that does not start with /.
* .github/workflows/ci.yml (VENDORDIR): Change from /usr/etc to
${prefix}/share/etc, this should help to check that the code no longer
relies on the assumption that VENDORDIR == /usr/etc.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7310eafa..c9781563 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: env: CC: gcc-12 TARGET: x86_64 - VENDORDIR: /usr/etc + VENDORDIR: ${prefix}/share/etc steps: - uses: actions/checkout@v3 with: |