diff options
author | Richard Levitte <levitte@openssl.org> | 2021-04-22 14:37:40 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2021-04-23 16:27:56 +0200 |
commit | f58f7ec9397de7b752aa547e2677933559a657db (patch) | |
tree | 283ccd3eb4d01dbdca95864118acfe29d29e3d9c /Configurations | |
parent | test: separate some DES based tests out to permit a no-des build to work (diff) | |
download | openssl-f58f7ec9397de7b752aa547e2677933559a657db.tar.xz openssl-f58f7ec9397de7b752aa547e2677933559a657db.zip |
Don't remove $(TARFILE) when cleaning
This file is outside the source tree, so we have no business removing
it. This is especially concerning if that was the tarball the user
had to create the source tree.
Fixes #14981
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14985)
Diffstat (limited to 'Configurations')
-rw-r--r-- | Configurations/unix-Makefile.tmpl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index c4755c54cd..be6036c227 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -561,7 +561,6 @@ clean: libclean $(RM) -r test/test-runs $(RM) openssl.pc libcrypto.pc libssl.pc -find . -type l \! -name '.*' -exec $(RM) {} \; - $(RM) $(TARFILE) distclean: clean $(RM) configdata.pm |