From 351c043b70061ed84e10d9d2a2503ff1b653d297 Mon Sep 17 00:00:00 2001 From: Tony Kelman Date: Thu, 19 Mar 2015 14:51:36 -0700 Subject: [PATCH] remove filterDupLibs.sh, does not appear to be used any more --- contrib/README.md | 1 - contrib/filterDupLibs.sh | 17 ----------------- 2 files changed, 18 deletions(-) delete mode 100755 contrib/filterDupLibs.sh diff --git a/contrib/README.md b/contrib/README.md index af871484736f0..e6ebe13554168 100644 --- a/contrib/README.md +++ b/contrib/README.md @@ -6,7 +6,6 @@ Installation |[ build_executable.jl ](https://github.com/JuliaLang/julia/blob/master/contrib/build_executable.jl) | Support building standalone executables | |[ build_sysimg.jl ](https://github.com/JuliaLang/julia/blob/master/contrib/build_sysimg.jl) | Build a system image binary | |[ check-whitespace.sh ](https://github.com/JuliaLang/julia/blob/master/contrib/check-whitespace.sh) | Check for trailing white space | -|[ filterDupLibs.sh ](https://github.com/JuliaLang/julia/blob/master/contrib/filterDupLibs.sh) | script to filter out duplicate libraries | |[ fixup-libgfortran.sh ](https://github.com/JuliaLang/julia/blob/master/contrib/fixup-libgfortran.sh) | Include libgfortran and libquadmath for installations | |[ fixup-libstdc++.sh ](https://github.com/JuliaLang/julia/blob/master/contrib/fixup-libstdc++.sh) | Include libstdc++ for installations | |[ install.sh ](https://github.com/JuliaLang/julia/blob/master/contrib/install.sh) | installation script with different permissions | diff --git a/contrib/filterDupLibs.sh b/contrib/filterDupLibs.sh deleted file mode 100755 index a0367f3dd3318..0000000000000 --- a/contrib/filterDupLibs.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -libnames="" -libpaths="" - -# Loop over all command line arguments -for i in "$@"; do - # Get basename of this argument, check if it is already in libnames - name=$(basename "$i") - - if [[ -z $(echo $libnames | grep "$name") ]]; then - libnames+="$name " - libpaths+="$i " - fi -done - -echo $libpaths