From 741a5e82eb06f02ffba7da91bfd41f1815e594ee Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Januszewski?= Date: Mon, 18 Feb 2008 23:12:44 +0100 Subject: [PATCH] core: make symlinks to fbsplashctl relative --- core/src/Makefile.am | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/core/src/Makefile.am b/core/src/Makefile.am index 3b5525d..dec487c 100644 --- a/core/src/Makefile.am +++ b/core/src/Makefile.am @@ -197,10 +197,11 @@ fbsplashctl_CPPFLAGS += $(fbcondecor_ctl_CPPFLAGS) endif install-exec-hook: - $(LN_S) $(DESTDIR)$(eexecsbindir)/fbsplashctl$(EXEEXT) $(DESTDIR)$(eexecsbindir)/fbsplashd.static$(EXEEXT) - $(LN_S) $(DESTDIR)$(eexecsbindir)/fbsplashctl$(EXEEXT) $(DESTDIR)$(eexecbindir)/splash_util.static$(EXEEXT) + cd $(DESTDIR)$(eexecsbindir) && \ + $(LN_S) fbsplashctl$(EXEEXT) fbsplashd.static$(EXEEXT) && \ + $(LN_S) fbsplashctl$(EXEEXT) splash_util.static$(EXEEXT) if CONFIG_FBCON_DECOR - $(LN_S) $(DESTDIR)$(eexecsbindir)/fbsplashctl$(EXEEXT) $(DESTDIR)$(eexecsbindir)/fbcondecor_ctl.static$(EXEEXT) + cd $(DESTDIR)$(eexecsbindir) && $(LN_S) fbsplashctl$(EXEEXT) fbcondecor_ctl.static$(EXEEXT) endif ################################################################################ -- 2.11.4.GIT