Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the Xcode configuration and the Rakefile #56

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update the rake file.fixed the make clean bug
  • Loading branch information
kinglong huang authored and kinglong huang committed May 9, 2014
commit 6db3111c68720f3384e3ce4230d09b5828671af0
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -146,11 +146,11 @@ def buildArch(arch)
else
raise "Build failed: unknown arch: #{arch}"
end

system_or_exit "cd ffmpeg; ./configure #{args}"
system_or_exit "cd ffmpeg; make"
system_or_exit "cd ffmpeg; make install"
system_or_exit "cd ffmpeg; make clean"
system_or_exit "cd FFmpeg; [ -f -.d ] && rm -- -.d; make clean"
system_or_exit "rm -r #{prefixDir}/lib/pkgconfig"

end