瀏覽代碼

Use Cygwin64 if it is available.

Douglas Thrift 10 年之前
父節點
當前提交
542534ef4e
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      GNUmakefile

+ 3 - 3
GNUmakefile

@@ -5,10 +5,10 @@
 # GNUmakefile
 
 ifeq ($(OS),Windows_NT)
-SED := C:\cygwin\bin\sed.exe
-ZIP := C:\cygwin\bin\zip.exe
+SED := $(subst /,\,$(lastword $(wildcard C:/cygwin*/bin/sed.exe)))
+ZIP := $(subst /,\,$(lastword $(wildcard C:/cygwin*/bin/zip.exe)))
 PROFILE := $(subst /,\,$(firstword $(wildcard $(APPDATA)/Instantbird/Profiles/*.default)))
-MKDIR_P := C:\cygwin\bin\mkdir.exe -p
+MKDIR_P := $(subst /,\,$(lastword $(wildcard C:/cygwin*/bin/mkdir.exe))) -p
 RM_F := del /F /A
 else
 SED := sed