diff options
Diffstat (limited to 'multimedia')
-rwxr-xr-x | multimedia/x264-devel/files/strip_fopt.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/multimedia/x264-devel/files/strip_fopt.sh b/multimedia/x264-devel/files/strip_fopt.sh index 3c9a3f16068..ed3dc1f4530 100755 --- a/multimedia/x264-devel/files/strip_fopt.sh +++ b/multimedia/x264-devel/files/strip_fopt.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: strip_fopt.sh,v 1.2 2008/12/18 16:19:07 bjs Exp $ +# $NetBSD: strip_fopt.sh,v 1.3 2011/01/19 12:45:12 drochner Exp $ # # libtool assumes that the compiler can handle the -fPIC flag and the # -fno-common. This isn't always true, for example yasm can't handle it. @@ -10,9 +10,6 @@ while [ $# -gt 0 ]; do case "$1" in -fPIC|-fno-common) ;; - -DPIC) - command="$command -D__PIC__" - ;; *) command="$command $1" ;; |