From 53bbfe7a8d7d4c7e471934b1d4f6f6fbc3ecab70 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Thu, 11 Sep 2008 12:53:39 +0000 Subject: [PATCH] Using "$(LIBTOOL)" instead of "libtool" --- src/makefile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/makefile.c b/src/makefile.c index 9a6d276..cfd0298 100644 --- a/src/makefile.c +++ b/src/makefile.c @@ -1458,10 +1458,10 @@ static void _install_target_libtool(Config * config, FILE * fp, if((path = config_get(config, target, "install")) == NULL) return; fprintf(fp, "%s%s\n", "\t$(MKDIR) $(DESTDIR)", path); - fprintf(fp, "%s%s%s%s/%s%s", "\tlibtool --mode=install $(INSTALL)" + fprintf(fp, "%s%s%s%s/%s%s", "\t$(LIBTOOL) --mode=install $(INSTALL)" " -m 0755 ", target, ".la $(DESTDIR)", path, target, ".la\n"); - fprintf(fp, "%s/%s\n", "\tlibtool --mode=finish $(DESTDIR)", path); + fprintf(fp, "%s/%s\n", "\t$(LIBTOOL) --mode=finish $(DESTDIR)", path); } static void _install_target_object(Config * config, FILE * fp,