Switch path-munge from sed to perl.

This commit is contained in:
Graydon Hoare 2011-03-19 18:33:16 -07:00
parent ff22bdfb6e
commit 24e0fc071f
1 changed files with 3 additions and 1 deletions

View File

@ -67,7 +67,9 @@ ifdef CFG_WINDOWSY
CFG_LIB_NAME=$(1).dll
CFG_RUN_PROGRAM=$(1)
CFG_PATH_MUNGE := | sed -e 's/\\\(.\)/\/\1/g'
CFG_PATH_MUNGE := $(strip | perl -p \
-e 's@\\(.)@/\1@go;' \
-e 's@^/([a-zA-Z])/@\1:/@o;')
ifdef CFG_FLEXLINK
CFG_BOOT_NATIVE := 1
endif