]> wimlib.net Git - wimlib/blobdiff - build-aux/strip_fPIC.sh
Re-visit SHA-1 code
[wimlib] / build-aux / strip_fPIC.sh
diff --git a/build-aux/strip_fPIC.sh b/build-aux/strip_fPIC.sh
deleted file mode 100755 (executable)
index 45d34ba..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-#
-# libtool assumes that the compiler can handle the -fPIC flag
-# This isn't always true (for example, nasm can't handle it)
-command=""
-while [ $# -gt 0 ]; do
-    case "$1" in
-        -fPIC)
-            # Ignore -fPIC option
-            ;;
-        -fno-common)
-            # Ignore -fPIC and -DPIC options
-            ;;
-        *)
-            command="$command $1"
-            ;;
-    esac
-    shift
-done
-echo $command
-exec $command