summaryrefslogtreecommitdiffstats
path: root/secure/lib/libcrypto
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2003-03-10 19:43:56 +0000
committerobrien <obrien@FreeBSD.org>2003-03-10 19:43:56 +0000
commit84a73cfb243a439cac94641fe526f7383f904674 (patch)
treea06a30645f3af940b6dc29764c8a884dc618a35e /secure/lib/libcrypto
parentb3deffb7e1c58d9f408582b7ba87f3eecdad6d2a (diff)
downloadFreeBSD-src-84a73cfb243a439cac94641fe526f7383f904674.zip
FreeBSD-src-84a73cfb243a439cac94641fe526f7383f904674.tar.gz
Don't error out the build if removing a "stale" symlink fails.
Pointy hat for breaking my installworld: nectar
Diffstat (limited to 'secure/lib/libcrypto')
-rw-r--r--secure/lib/libcrypto/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/lib/libcrypto/Makefile b/secure/lib/libcrypto/Makefile
index a8fe551..a6078ed 100644
--- a/secure/lib/libcrypto/Makefile
+++ b/secure/lib/libcrypto/Makefile
@@ -271,9 +271,9 @@ evp.h: ${LCRYPTO_SRC}/crypto/evp/evp.h
OLDSYMLINKS+= libdes.a libdes.so libdes.so.3 libdes_p.a
afterinstall:
@echo "Removing stale symlinks."
- rm -f ${DESTDIR}${INCLUDEDIR}/des.h
+ -rm -f ${DESTDIR}${INCLUDEDIR}/des.h
.for symlink in ${OLDSYMLINKS}
- rm -f ${DESTDIR}${LIBDIR}/${symlink}
+ -rm -f ${DESTDIR}${LIBDIR}/${symlink}
.endfor
.include <bsd.lib.mk>
OpenPOWER on IntegriCloud