diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-04-08 00:21:21 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-04-08 00:21:21 -0700 |
commit | cf4fe3baa5208bb84c956efd0d4eb1e4465c55f0 (patch) | |
tree | 5556d45f9f19284b688d3699c0a2a6e9da5f0223 /configure | |
parent | 1cafc3e511b19f22ad6eb8c49c3f4cd7f87ece6a (diff) | |
download | txr-cf4fe3baa5208bb84c956efd0d4eb1e4465c55f0.tar.gz txr-cf4fe3baa5208bb84c956efd0d4eb1e4465c55f0.tar.bz2 txr-cf4fe3baa5208bb84c956efd0d4eb1e4465c55f0.zip |
Remove patch-related function from configure.
* configure (apply_patches): Unused function removed.
This was used for applying patches when MPI was a tarball,
not expanded in the code tree.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 18 |
1 files changed, 0 insertions, 18 deletions
@@ -2553,24 +2553,6 @@ fi $make conftest.clean # -# Function to apply patches. -# -apply_patches() -{ - if ! [ -e patches/series ] ; then - echo "no patches" - return 0 - fi - - while read patch patchlevel ; do - case patch in - '#' ) continue ;; - * ) patch ${patchlevel:--p1} < patches/$patch ;; - esac - done < patches/series -} - -# # Some final blurbs into config.h # |