More hacks to the glib2 recipe.

Make sure the dir exists before creating a link inside it.
This commit is contained in:
Adrien Destugues
2014-06-19 14:57:15 +02:00
parent 09644576b7
commit 6b27300332

View File

@@ -92,7 +92,9 @@ BUILD()
# There seem to be a problem with libtool, and without this some libraries # There seem to be a problem with libtool, and without this some libraries
# would not be found during the build. # would not be found during the build.
ln -s ../../glib/.libs gobject/.libs/lib mkdir -p gobject/.libs
ln -sf ../../glib/.libs gobject/.libs/lib
make $jobArgs make $jobArgs
} }