From: Magnus Holmgren Date: Sat, 2 Jun 2007 21:31:34 +0000 (+0200) Subject: Typo fixes to install targets, spotted by Magnus Holmgren. X-Git-Tag: nettle_2.0_release_20090608~127 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b6b5bbc9c9700ef816cb87d2e822fbf0475b3ace;p=thirdparty%2Fnettle.git Typo fixes to install targets, spotted by Magnus Holmgren. Rev: nettle/Makefile.in:1.4 --- diff --git a/Makefile.in b/Makefile.in index 2ec09a6b..92deef07 100644 --- a/Makefile.in +++ b/Makefile.in @@ -248,7 +248,7 @@ config.m4: config.m4.in config.status # Installation install-here: install-info install-headers install-static \ - @IF_SHARED$ install-shared-nettle @IF_HOGWEED@ install-shared-hogweed + @IF_SHARED@ install-shared-nettle @IF_HOGWEED@ install-shared-hogweed install-static: $(LIBTARGETS) $(MKDIR_P) $(DESTDIR)$(libdir) @@ -262,7 +262,7 @@ install-shared-nettle: $(LIBNETTLE_FORLINK) [ -z "$(LIBNETTLE_SONAME)" ] \ || (cd $(DESTDIR)$(libdir) \ && ln -sf $(LIBNETTLE_FILE) $(LIBNETTLE_SONAME) \ - && ln -sf $(LIBNETTLE_FILE) $(LIBNETTLE_FORLINK) + && ln -sf $(LIBNETTLE_FILE) $(LIBNETTLE_FORLINK)) install-shared-hogweed: $(LIBHOGWEED_FORLINK) $(MKDIR_P) $(DESTDIR)$(libdir) @@ -270,7 +270,7 @@ install-shared-hogweed: $(LIBHOGWEED_FORLINK) [ -z "$(LIBHOGWEED_SONAME)" ] \ || (cd $(DESTDIR)$(libdir) \ && ln -sf $(LIBHOGWEED_FILE) $(LIBHOGWEED_SONAME) \ - && ln -sf $(LIBHOGWEED_FILE) $(LIBHOGWEED_FORLINK) + && ln -sf $(LIBHOGWEED_FILE) $(LIBHOGWEED_FORLINK)) # I'd like to use makes VPATH search to locate the files to be # installed. But it seems most make programs don't set $<, $^, $? and