summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrien Nader <adrien@notk.org>2015-08-03 13:00:28 +0200
committerAdrien Nader <adrien@notk.org>2015-08-03 13:00:28 +0200
commitcb31eac595b106b6c9216ad97341d59c51d1a961 (patch)
tree67e0f9207d662ea762df426187df5e609d616ce6
parent5c34be3023b849ed61a6fec3c966b06642f0db40 (diff)
*.SlackBuild: --strip-unneeded is moved to inside ${{HOST,TARGET}_STRIP}.adrien/next-review
-rw-r--r--flexdll/flexdll.SlackBuild2
-rwxr-xr-xgendef/gendef.SlackBuild2
-rwxr-xr-xgenidl/genidl.SlackBuild2
-rwxr-xr-xgenpeimg/genpeimg.SlackBuild2
-rwxr-xr-xmingw-w64/mingw-w64.SlackBuild2
-rwxr-xr-xpixman/pixman.SlackBuild2
-rwxr-xr-xwidl/widl.SlackBuild2
-rwxr-xr-xwin-iconv/win-iconv.SlackBuild2
-rwxr-xr-xwinpthreads/winpthreads.SlackBuild2
9 files changed, 9 insertions, 9 deletions
diff --git a/flexdll/flexdll.SlackBuild b/flexdll/flexdll.SlackBuild
index c3ce223..893deb3 100644
--- a/flexdll/flexdll.SlackBuild
+++ b/flexdll/flexdll.SlackBuild
@@ -76,7 +76,7 @@ cp flexdll.h $PKG/${PREFIX}/${TARGET_TRIPLET}/include
# Strip binaries:
find $PKG | xargs file | egrep "executable|shared object" \
| grep ${HOST_EXE_FORMAT} | cut -f 1 -d : \
- | xargs ${HOST_STRIP} --strip-debug 2> /dev/null
+ | xargs ${HOST_STRIP} 2> /dev/null
# Compress and link manpages, if any:
if [ -d $PKG/${PREFIX}/man ]; then
diff --git a/gendef/gendef.SlackBuild b/gendef/gendef.SlackBuild
index 21492f5..66800ba 100755
--- a/gendef/gendef.SlackBuild
+++ b/gendef/gendef.SlackBuild
@@ -80,7 +80,7 @@ make DESTDIR=$PKG install
# Strip binaries:
( cd $PKG
- find . | xargs file | egrep "executable|shared object" | grep ${HOST_EXE_FORMAT} | cut -f 1 -d : | xargs ${HOST_STRIP} --strip-debug 2> /dev/null
+ find . | xargs file | egrep "executable|shared object" | grep ${HOST_EXE_FORMAT} | cut -f 1 -d : | xargs ${HOST_STRIP} 2> /dev/null
)
# Compress and link manpages, if any:
diff --git a/genidl/genidl.SlackBuild b/genidl/genidl.SlackBuild
index 70d7669..d16122e 100755
--- a/genidl/genidl.SlackBuild
+++ b/genidl/genidl.SlackBuild
@@ -80,7 +80,7 @@ make DESTDIR=$PKG install
# Strip binaries:
( cd $PKG
- find . | xargs file | egrep "executable|shared object" | grep ${HOST_EXE_FORMAT} | cut -f 1 -d : | xargs ${HOST_STRIP} --strip-debug 2> /dev/null
+ find . | xargs file | egrep "executable|shared object" | grep ${HOST_EXE_FORMAT} | cut -f 1 -d : | xargs ${HOST_STRIP} 2> /dev/null
)
# Compress and link manpages, if any:
diff --git a/genpeimg/genpeimg.SlackBuild b/genpeimg/genpeimg.SlackBuild
index 670877e..6b940d0 100755
--- a/genpeimg/genpeimg.SlackBuild
+++ b/genpeimg/genpeimg.SlackBuild
@@ -61,7 +61,7 @@ make DESTDIR=$PKG install
# Strip binaries:
( cd $PKG
- find . | xargs file | egrep "executable|shared object" | grep ${HOST_EXE_FORMAT} | cut -f 1 -d : | xargs ${HOST_STRIP} --strip-debug 2> /dev/null
+ find . | xargs file | egrep "executable|shared object" | grep ${HOST_EXE_FORMAT} | cut -f 1 -d : | xargs ${HOST_STRIP} 2> /dev/null
)
# Compress and link manpages, if any:
diff --git a/mingw-w64/mingw-w64.SlackBuild b/mingw-w64/mingw-w64.SlackBuild
index 4989577..b9dfe09 100755
--- a/mingw-w64/mingw-w64.SlackBuild
+++ b/mingw-w64/mingw-w64.SlackBuild
@@ -76,7 +76,7 @@ fi
find $PKG \! \( -name "*.h" \) | xargs file | grep -e "executable" -e "shared object" \
| grep ${TARGET_EXE_FORMAT} | cut -f 1 -d : \
- | xargs ${TARGET_STRIP} --strip-unneeded 2> /dev/null || true
+ | xargs ${TARGET_STRIP} 2> /dev/null || true
# Compress info pages
if [ -e $PKG/${PREFIX}/info ]; then
diff --git a/pixman/pixman.SlackBuild b/pixman/pixman.SlackBuild
index e98c65b..7d55eca 100755
--- a/pixman/pixman.SlackBuild
+++ b/pixman/pixman.SlackBuild
@@ -81,7 +81,7 @@ make DESTDIR=$PKG install
# Strip binaries:
( cd $PKG
- find . | xargs file | egrep "executable|shared object" | grep ${HOST_EXE_FORMAT} | cut -f 1 -d : | xargs ${HOST_STRIP} --strip-debug 2> /dev/null
+ find . | xargs file | egrep "executable|shared object" | grep ${HOST_EXE_FORMAT} | cut -f 1 -d : | xargs ${HOST_STRIP} 2> /dev/null
)
# Compress and link manpages, if any:
diff --git a/widl/widl.SlackBuild b/widl/widl.SlackBuild
index 20806d2..933d45c 100755
--- a/widl/widl.SlackBuild
+++ b/widl/widl.SlackBuild
@@ -81,7 +81,7 @@ make DESTDIR=$PKG install
# Strip binaries:
( cd $PKG
- find . | xargs file | egrep "executable|shared object" | grep ${HOST_EXE_FORMAT} | cut -f 1 -d : | xargs ${HOST_STRIP} --strip-debug 2> /dev/null
+ find . | xargs file | egrep "executable|shared object" | grep ${HOST_EXE_FORMAT} | cut -f 1 -d : | xargs ${HOST_STRIP} 2> /dev/null
)
# Compress and link manpages, if any:
diff --git a/win-iconv/win-iconv.SlackBuild b/win-iconv/win-iconv.SlackBuild
index e5766f9..909c0d8 100755
--- a/win-iconv/win-iconv.SlackBuild
+++ b/win-iconv/win-iconv.SlackBuild
@@ -85,7 +85,7 @@ cp -a iconv.{def,h} ${PKG}/${PREFIX}/include
cp -a libiconv.dll.a ${PKG}/${PREFIX}/lib${LIBDIRSUFFIX}
# Strip binaries:
-find ${PKG} | xargs file | egrep "executable|shared object" | grep ${HOST_EXE_FORMAT} | cut -f 1 -d : | xargs ${HOST_STRIP} --strip-debug 2> /dev/null
+find ${PKG} | xargs file | egrep "executable|shared object" | grep ${HOST_EXE_FORMAT} | cut -f 1 -d : | xargs ${HOST_STRIP} 2> /dev/null
mkdir -p $PKG/${PREFIX}/doc/$PKGNAM-$VERSION
cp -a readme.txt $PKG/${PREFIX}/doc/$PKGNAM-$VERSION
diff --git a/winpthreads/winpthreads.SlackBuild b/winpthreads/winpthreads.SlackBuild
index b732736..26d7156 100755
--- a/winpthreads/winpthreads.SlackBuild
+++ b/winpthreads/winpthreads.SlackBuild
@@ -84,7 +84,7 @@ mv ${PKG}/${PREFIX}/${TARGET_TRIPLET}/bin/*.dll ${PKG}/${PREFIX}/bin
# Strip binaries:
( cd $PKG
- find . | xargs file | egrep "executable|shared object" | grep ${TARGET_EXE_FORMAT} | cut -f 1 -d : | xargs ${TARGET_STRIP} --strip-debug 2> /dev/null
+ find . | xargs file | egrep "executable|shared object" | grep ${TARGET_EXE_FORMAT} | cut -f 1 -d : | xargs ${TARGET_STRIP} 2> /dev/null
)
# Compress and link manpages, if any: