Skip to content

Commit

Permalink
Split "make && make install" into two commands
Browse files Browse the repository at this point in the history
Doesn't work on Windows (what a surprise).
  • Loading branch information
robinst committed Dec 18, 2008
1 parent e6091f4 commit 734ecae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Rakefile
Expand Up @@ -110,7 +110,8 @@ if defined? Gem
chdir "#{tmp}/#{id3lib}" do
env = "CFLAGS=#{cflags} CXXFLAGS=#{cflags}"
sh "sh configure --host=#{host} --prefix=#{tmp} #{env}"
sh "make && make install"
sh "make"
sh "make install"
end
end

Expand Down

0 comments on commit 734ecae

Please sign in to comment.