浏览代码

MacOSX/Framework: Properly track updated library and modules.

Pierre d'Herbemont 17 年之前
父节点
当前提交
87ad2e0b1b
共有 2 个文件被更改,包括 3 次插入2 次删除
  1. 1 1
      Pre-Compile.sh
  2. 2 1
      VLC.xcodeproj/project.pbxproj

+ 1 - 1
Pre-Compile.sh

@@ -37,7 +37,7 @@ if test "${ACTION}" = "build"; then
             lib_dest="${2}/`basename ${1}`"
             lib_dest="${2}/`basename ${1}`"
         fi
         fi
         
         
-        if test -e ${1} && ! test -e ${lib_dest}; then
+        if test -e ${1} && ((! test -e ${lib_dest}) || test ${1} -nt ${lib_dest} ); then
             mkdir -p ${2}
             mkdir -p ${2}
             
             
             # Lets copy the library from the source folder to our new destination folder
             # Lets copy the library from the source folder to our new destination folder

文件差异内容过多而无法显示
+ 2 - 1
VLC.xcodeproj/project.pbxproj