9 lines
191 B
Plaintext
9 lines
191 B
Plaintext
|
#!/bin/sh -efu
|
||
|
|
||
|
if [ "${RPM_INSTALL_STRIP-}" = ignore ]; then
|
||
|
echo >&2 "WARNING: strip is called in %install by 'install -s' (ignored)"
|
||
|
else
|
||
|
set -- `rpm --eval %__strip` "$@"
|
||
|
exec "$@"
|
||
|
fi
|