Skip to content

Commit

Permalink
Makefile: drop non-portable ln usage
Browse files Browse the repository at this point in the history
  • Loading branch information
illiliti committed Aug 28, 2023
1 parent 4e27e64 commit 8aa0783
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -702,15 +702,15 @@ ell/shared: Makefile
$(AM_V_at)$(MKDIR_P) ell
$(AM_V_GEN)for f in $(ell_shared) ; do \
if [ ! -f $$f ] ; then \
$(LN_S) -t ell -f $(abs_srcdir)/../ell/$$f ; \
$(LN_S) -f $(abs_srcdir)/../ell/$$f ; \
fi \
done > $@

ell/internal: Makefile
$(AM_V_at)$(MKDIR_P) ell
$(AM_V_GEN)for f in $(ell_headers) $(ell_sources) ; do \
if [ ! -f $$f ] ; then \
$(LN_S) -t ell -f $(abs_srcdir)/../ell/$$f ; \
$(LN_S) -f $(abs_srcdir)/../ell/$$f ; \
fi \
done > $@

Expand Down

0 comments on commit 8aa0783

Please sign in to comment.