mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-29 20:47:56 +00:00
Makefile takes all double quotes in variable definitions literally. Thus with the following definition: FOO := "a" expanding FOO in a file path results the following (which is invalid): SRC += a/b/${FOO}.c --> SRC += a/b/"a".c To avoid such issues, this patch drops the double quotes at the beginning and end of the definition of symbols with string type. Signed-off-by: Junjie Mao <junjie.mao@intel.com> Acked-by: Anthony Xu <anthony.xu@intel.com> Acked-by: Geoffroy VanCutsem <geoffroy.vancutsem@intel.com>