diff options
author | drochner <drochner@pkgsrc.org> | 2011-01-19 12:45:12 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2011-01-19 12:45:12 +0000 |
commit | 86ec97bb54de7c18f5d581955a90a2ee98b3d0b1 (patch) | |
tree | b4dd5254d7ef588a18397722347c58e52417e2ca /multimedia | |
parent | 5954e1e455c28b179c6b8d7f715cc453b9cc1742 (diff) | |
download | pkgsrc-86ec97bb54de7c18f5d581955a90a2ee98b3d0b1.tar.gz |
the code doesn't use "__PIC__" anymore - remove substitution
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" ;; |