Use proper create_makefile

Using create_makefile('liboga/liboga') will compile liboga.so into
path-to-gem/lib/liboga/ and therefore require_relative in oga.rb will fail.
Therefore the right parameter for create_makefile is 'liboga' ->
path-to-gem/lib/liboga.so
This commit is contained in:
Benjamin Klotz 2014-09-01 08:12:13 +02:00 committed by Yorick Peterse
parent 9649b50cc9
commit 0b096dfe25
1 changed files with 1 additions and 1 deletions

View File

@ -10,4 +10,4 @@ else
$CFLAGS << ' -O3'
end
create_makefile('liboga/liboga')
create_makefile('liboga')