missing -f in softlink commands (#594)
This PR adds in a few of the Mafefiles the missing -f in the softlink commands. Co-authored-by: Paul Mullowney <Paul.Mullowney@nrel.gov>
This commit is contained in:
parent
565bbe0511
commit
a8d423013b
@ -199,7 +199,7 @@ libHYPRE_FEI.a: ${OBJS}
|
||||
libHYPRE_FEI.so libHYPRE_FEI.dylib: ${OBJS}
|
||||
@echo "Building $@ ... "
|
||||
${BUILD_CC_SHARED} -o ${SONAME} ${OBJS} ${SHARED_SET_SONAME}${SONAME}
|
||||
ln -s ${SONAME} $@
|
||||
ln -s -f ${SONAME} $@
|
||||
|
||||
${OBJS}: ${HEADERS}
|
||||
|
||||
|
||||
@ -152,6 +152,6 @@ libHYPRE_mli.a: ${OBJS}
|
||||
libHYPRE_mli.so libHYPRE_mli.dylib: ${OBJS}
|
||||
@echo "Building $@ ... "
|
||||
${BUILD_CC_SHARED} -o ${SONAME} ${OBJS} ${SHARED_SET_SONAME}${SONAME}
|
||||
ln -s ${SONAME} $@
|
||||
ln -s -f ${SONAME} $@
|
||||
|
||||
${OBJS}: ${HEADERS}
|
||||
|
||||
@ -34,7 +34,7 @@ sed -e 's#m4_define.*HYPRE_DATE[^)]*#m4_define([M4_HYPRE_DATE], ['$hypre_reld
|
||||
> config/configure.in.tmp
|
||||
mv config/configure.in.tmp config/configure.in
|
||||
|
||||
ln -s config/configure.in .
|
||||
ln -s -f config/configure.in .
|
||||
rm -rf aclocal.m4 configure autom4te.cache
|
||||
autoconf --include=config
|
||||
autoheader configure.in
|
||||
|
||||
@ -110,6 +110,6 @@ libHYPRE_Euclid.a: ${OBJS}
|
||||
libHYPRE_Euclid.so libHYPRE_Euclid.dylib: ${OBJS}
|
||||
@echo "Building $@ ... "
|
||||
${BUILD_CC_SHARED} -o ${SONAME} ${OBJS} ${SHARED_SET_SONAME}${SONAME}
|
||||
ln -s ${SONAME} $@
|
||||
ln -s -f ${SONAME} $@
|
||||
|
||||
${OBJS}: ${HEADERS}
|
||||
|
||||
@ -81,6 +81,6 @@ libHYPRE_ParaSails.a: ${OBJS}
|
||||
libHYPRE_ParaSails.so libHYPRE_ParaSails.dylib: ${OBJS}
|
||||
@echo "Building $@ ... "
|
||||
${BUILD_CC_SHARED} -o ${SONAME} ${OBJS} ${SHARED_SET_SONAME}${SONAME}
|
||||
ln -s ${SONAME} $@
|
||||
ln -s -f ${SONAME} $@
|
||||
|
||||
${OBJS}: ${HEADERS}
|
||||
|
||||
@ -74,6 +74,6 @@ libHYPRE_DistributedMatrixPilutSolver.a: ${OBJS}
|
||||
libHYPRE_DistributedMatrixPilutSolver.so libHYPRE_DistributedMatrixPilutSolver.dylib: ${OBJS}
|
||||
@echo "Building $@ ... "
|
||||
${BUILD_CC_SHARED} -o ${SONAME} ${OBJS} ${SHARED_SET_SONAME}${SONAME}
|
||||
ln -s ${SONAME} $@
|
||||
ln -s -f ${SONAME} $@
|
||||
|
||||
${OBJS}: ${HEADERS}
|
||||
|
||||
@ -87,7 +87,7 @@ devhelp:
|
||||
@echo "Build finished."
|
||||
@echo "To view the help file:"
|
||||
@echo "# mkdir -p $$HOME/.local/share/devhelp/hypre"
|
||||
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/hypre"
|
||||
@echo "# ln -s -f $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/hypre"
|
||||
@echo "# devhelp"
|
||||
|
||||
epub:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user