I want to remove a character of string in makefile, for example
FOO = 123-456-789-
all:
# want to display 123-456-789
echo "$(FOO)"
I want to remove the last char in sting "-", which mean how to let "123-456-789-" become "123-456-789"
thanks
Since you know the character you want to replace, the following snippet must work:
FOO = 123-456-789-
all:
echo $(FOO:-=)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With