Replace "ln -sf" by "$(LN_S) -f" for

systems that don't have symbolic links available.



git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13556 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming
2006-03-09 14:28:54 +00:00
parent f3a611d90a
commit e993e7256a
30 changed files with 89 additions and 86 deletions

View File

@@ -16,10 +16,10 @@ endif
.scm-links:
rm -f www
ln -sf . www
$(LN_S) -f . www
if GNUCASH_SEPARATE_BUILDDIR
for X in ${SCM_FILE_LINKS} ; do \
ln -sf ${srcdir}/$$X . ; \
$(LN_S) -f ${srcdir}/$$X . ; \
done
endif
touch .scm-links