Browse Source

MacOSX/Framework: Properly track updated library and modules.

pull/2/head
Pierre d'Herbemont 19 years ago
parent
commit
17a99b41f0
  1. 2
      extras/MacOSX/Framework/Pre-Compile.sh
  2. 3
      extras/MacOSX/Framework/VLC.xcodeproj/project.pbxproj

2
extras/MacOSX/Framework/Pre-Compile.sh

@ -37,7 +37,7 @@ if test "${ACTION}" = "build"; then
lib_dest="${2}/`basename ${1}`"
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}
# Lets copy the library from the source folder to our new destination folder

3
extras/MacOSX/Framework/VLC.xcodeproj/project.pbxproj

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save