strip_files: skip this pass completely if $noarch is set.
This commit is contained in:
parent
eaf3247352
commit
ef9cfa20bf
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ strip_files_real()
|
||||||
if ! command -v strip 2>&1 >/dev/null; then
|
if ! command -v strip 2>&1 >/dev/null; then
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
[ -n "$nostrip" ] && return 0
|
[ -n "$nostrip" -o -n "$noarch" ] && return 0
|
||||||
|
|
||||||
if [ -n "$revision" ]; then
|
if [ -n "$revision" ]; then
|
||||||
lver="${version}_${revision}"
|
lver="${version}_${revision}"
|
||||||
|
|
Loading…
Reference in a new issue