From 6b2730033245930e32cac162293006857dce2b30 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Thu, 19 Jun 2014 14:57:15 +0200 Subject: [PATCH] More hacks to the glib2 recipe. Make sure the dir exists before creating a link inside it. --- dev-libs/glib/glib2-2.38.1.recipe | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-libs/glib/glib2-2.38.1.recipe b/dev-libs/glib/glib2-2.38.1.recipe index f914b0dcd..84f4a0cf2 100644 --- a/dev-libs/glib/glib2-2.38.1.recipe +++ b/dev-libs/glib/glib2-2.38.1.recipe @@ -92,7 +92,9 @@ BUILD() # There seem to be a problem with libtool, and without this some libraries # 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 }