make 3.81 intentionally removed support for DOS paths; use make 3.80 or the newer version (make-3.81-2?).

If you're using cygpath in a mixed Windows/Unix environment, you'll want to wrap these calls in a portable function:

ifdef COMSPEC
cygpath-mixed = $(shell cygpath -m "$1")
cygpath-unix = $(shell cygpath -u "$1")
drive-letter-to-slash = /$(subst :,,$1)
else
cygpath-mixed = $1
cygpath-unix = $1
drive-letter-to-slash = $1
endif

相关文章:

  • 2021-11-10
  • 2021-10-12
  • 2022-12-23
  • 2022-12-23
  • 2021-08-16
  • 2021-12-10
  • 2022-12-23
  • 2021-10-04
猜你喜欢
  • 2021-09-02
  • 2021-10-30
  • 2022-01-17
  • 2022-12-23
  • 2021-10-05
  • 2022-12-23
相关资源
相似解决方案