diff options
author | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2021-08-25 14:45:08 +0200 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2021-08-25 14:45:08 +0200 |
commit | 236b0a08ae46286ae319e870d8c396ae1ca24a9f (patch) | |
tree | ed329e044922c6319f926b11848e14dfa9d56f4d /files | |
parent | a7af15295542f51c0168d445870936487337c059 (diff) | |
download | midipix_build-236b0a08ae46286ae319e870d8c396ae1ca24a9f.tar.bz2 midipix_build-236b0a08ae46286ae319e870d8c396ae1ca24a9f.tar.xz |
files/pkgconf_host/bin/%[_target]-pkg-config: always append forward slash to prefix.
Diffstat (limited to 'files')
-rw-r--r-- | files/pkgconf_host/bin/%[_target]-pkg-config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/pkgconf_host/bin/%[_target]-pkg-config b/files/pkgconf_host/bin/%[_target]-pkg-config index 7351e62f..28e59e3c 100644 --- a/files/pkgconf_host/bin/%[_target]-pkg-config +++ b/files/pkgconf_host/bin/%[_target]-pkg-config @@ -4,5 +4,5 @@ if [ "${#}" -eq 1 ]\ && [ "x${1}" = "x--version" ]; then "${PREFIX}/bin/pkgconf" --version; else - "${PREFIX}/bin/pkgconf" --define-variable=prefix="${PREFIX%/}/native" --keep-system-cflags "${@}"; + "${PREFIX}/bin/pkgconf" --define-variable=prefix="${PREFIX%/}/native/" --keep-system-cflags "${@}"; fi; |