Rename scripts to bin
[dotfiles.git] / scripts / change_dylib_path.pl
diff --git a/scripts/change_dylib_path.pl b/scripts/change_dylib_path.pl
deleted file mode 100755 (executable)
index 5ab2c9d..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/perl -w
-#
-use strict;
-#use v5.10;
-
-my @cpve_libs = ( 'libpme.0.dylib', 'libpmexy.1.dylib', 'libpmpxy.1.dylib', 'libtaf.0.dylib', 'libtafxy.1.dylib','libsrtp.dylib' );
-
-my @lib_to_change = ( 'libxml2.2.dylib', 'libssl.dylib', 'libcrypto.dylib' );
-
-for my $ff (@cpve_libs){
-    !system '/usr/bin/install_name_tool -change @executable_path/../Frameworks/' . $_ . ' @executable_path/' . $_ . ' ./' . $ff or die "$!"     for @lib_to_change;
-}
-
-print  "==DONE==" . "\n";
-