Search results

  1. N

    Need echo string output to variable in .mk file

    Thanks and it worked for below method. if test "$$($$(PKG)_FILE)" = "PKG_FILE" \ -o "$$($$(PKG)_NAME2)" = "PKG_NAME2"; then \
  2. N

    Need echo string output to variable in .mk file

    Thank you for your help. i did the same. temp="$$($$(VEN)_NAME) $$($$(VEN)_VERSION)";\ then echo "$$$$temp";\ --> Got printed. echo "Checking:$$(PKG_FILE)";\ --> Got printed. Now i want to compare two strings using ifeq. got error when i use .mk file. >>>/bin/sh: -c: line 0: syntax error near...
  3. N

    Need echo string output to variable in .mk file

    I'm beginner in .mk files. xyz.mk file is there in one of bundled package ,need some small changes in our requirement. that why we trying to do string operation. Want to redirect echo output to variable and its not at all working and following string comparison have to do. this is giving...
Top