diff options
author | Levente Polyak <anthraxx@archlinux.org> | 2021-06-21 20:46:16 +0200 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2021-07-17 22:56:11 +0200 |
commit | 0a0e66a784d4831c4139bf646b5329bff54465d7 (patch) | |
tree | 10c0aae49fcd0c08fb999a35c0d3933e4a73d524 /Makefile | |
parent | 60e96c9d4bc22062f4633fbc1faa57a2947d0605 (diff) | |
download | devtools-0a0e66a784d4831c4139bf646b5329bff54465d7.tar.xz |
feat: support exposing buildtool to aid reproducible builds configs
This helps to map the correct build tool configs that are required to
reproduce a specific package and have the appropriate *FLAGS etc.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -89,7 +89,7 @@ edit = sed -e "s|@pkgdatadir[@]|$(PREFIX)/share/devtools|g" %: %.in Makefile lib/common.sh @echo "GEN $@" @$(RM) "$@" - @{ echo -n 'm4_changequote([[[,]]])'; cat $@.in; } | m4 -P | $(edit) >$@ + @{ echo -n 'm4_changequote([[[,]]])'; cat $@.in; } | m4 -P --define=m4_devtools_version=$V | $(edit) >$@ @chmod a-w "$@" @chmod +x "$@" @bash -O extglob -n "$@" |