diff --git a/ChangeLog b/ChangeLog index 00d9f63b12361fed6a565ec4390c81f98df55f56..80e07be85e6bc87cac288383f3f3d17d10c42e98 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2012-03-29 Niels Möller <nisse@lysator.liu.se> + + * Makefile.in (soname links): Adding missing space before ]. + 2012-03-23 Niels Möller <nisse@lysator.liu.se> * arcfour.h (arcfour_stream): Deleted obsolete prototype. diff --git a/Makefile.in b/Makefile.in index 1813a0d7299f617e84103ddc3573b0689c8a5ba8..a683452a7ac065d6ec1a24f9422622262a097184 100644 --- a/Makefile.in +++ b/Makefile.in @@ -176,7 +176,7 @@ $(LIBNETTLE_FORLINK): $(nettle_PURE_OBJS) (cd .lib \ && rm -f $(LIBNETTLE_FORLINK) \ && $(LN_S) ../$(LIBNETTLE_FORLINK) $(LIBNETTLE_FORLINK) \ - && [ -n "$(LIBNETTLE_SONAME)"] \ + && [ -n "$(LIBNETTLE_SONAME)" ] \ || { rm -f $(LIBNETTLE_SONAME) \ && $(LN_S) $(LIBNETTLE_FORLINK) $(LIBNETTLE_SONAME) ; } ) @@ -186,7 +186,7 @@ $(LIBHOGWEED_FORLINK): $(hogweed_PURE_OBJS) $(LIBNETTLE_FORLINK) (cd .lib \ && rm -f $(LIBHOGWEED_FORLINK) \ && $(LN_S) ../$(LIBHOGWEED_FORLINK) $(LIBHOGWEED_FORLINK) \ - && [ -n "$(LIBHOGWEED_SONAME)"] \ + && [ -n "$(LIBHOGWEED_SONAME)" ] \ || { rm -f $(LIBHOGWEED_SONAME) \ && $(LN_S) $(LIBHOGWEED_FORLINK) $(LIBHOGWEED_SONAME) ; } )