diff options
author | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2003-10-09 13:48:08 +0000 |
---|---|---|
committer | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2003-10-09 13:48:08 +0000 |
commit | 39dbac1d982ee97556dc5d08fa547d6b069248e1 (patch) | |
tree | 092204639598caae3f0bca91429fbabc00817fd6 | |
parent | 72ef344c16a3a023282d249f33782e6b7aa96d13 (diff) | |
download | spec-helper-39dbac1d982ee97556dc5d08fa547d6b069248e1.tar spec-helper-39dbac1d982ee97556dc5d08fa547d6b069248e1.tar.gz spec-helper-39dbac1d982ee97556dc5d08fa547d6b069248e1.tar.bz2 spec-helper-39dbac1d982ee97556dc5d08fa547d6b069248e1.tar.xz spec-helper-39dbac1d982ee97556dc5d08fa547d6b069248e1.zip |
also nuke /lib64/security/ paths
-rwxr-xr-x | spec-helper | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec-helper b/spec-helper index 7a09a36..ee9f238 100755 --- a/spec-helper +++ b/spec-helper @@ -74,7 +74,7 @@ if test -z "$DONT_FIX_PAMD_CONFIGS"; then configs=`ls $RPM_BUILD_ROOT/etc/pam.d/* 2> /dev/null` if [ -n "$configs" ]; then echo -n "Fixing pam.d config files..." - perl -pi -e "s|/lib/security/||" $configs + perl -pi -e "s,/(lib|lib64)/security/,," $configs echo "done" fi fi |