buildDotnetModule: add support for args with spaces in makeWrapperArgs

This commit is contained in:
Andreas Stührk 2023-03-01 12:36:35 +01:00
parent 8df3f2b74c
commit b76ce89dfc

@ -1,5 +1,6 @@
# Inherit arguments from the derivation
makeWrapperArgs=( ${makeWrapperArgs-} )
declare -a derivationMakeWrapperArgs="( ${makeWrapperArgs-} )"
makeWrapperArgs=( "${derivationMakeWrapperArgs[@]}" )
# First argument is the executable you want to wrap,
# the second is the destination for the wrapper.