diff options
author | Olivier Thauvin <nanardon@mandriva.org> | 2006-07-08 21:21:45 +0000 |
---|---|---|
committer | Olivier Thauvin <nanardon@mandriva.org> | 2006-07-08 21:21:45 +0000 |
commit | d962d97699dd685a1cb1f617b3ae39b4d9e61f35 (patch) | |
tree | 34f8152cc7eb22bdfd29fa9d67f8e180afb2659d | |
parent | dcbc73a5f134dac1909a34927d262cf3db4c723c (diff) | |
download | spec-helper-d962d97699dd685a1cb1f617b3ae39b4d9e61f35.tar spec-helper-d962d97699dd685a1cb1f617b3ae39b4d9e61f35.tar.gz spec-helper-d962d97699dd685a1cb1f617b3ae39b4d9e61f35.tar.bz2 spec-helper-d962d97699dd685a1cb1f617b3ae39b4d9e61f35.tar.xz spec-helper-d962d97699dd685a1cb1f617b3ae39b4d9e61f35.zip |
- do not fix symlink to avoid the script convert it to real file
-rwxr-xr-x | fixpamd | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ #!/bin/sh if test -z "$DONT_FIX_PAMD_CONFIGS"; then - configs=`ls $RPM_BUILD_ROOT/etc/pam.d/* 2> /dev/null` + configs=`find $RPM_BUILD_ROOT/etc/pam.d/ -type f 2> /dev/null` if [ -n "$configs" ]; then echo -n "Fixing pam.d config files..." perl -pi -e "s,/(lib|lib64)/security/,," $configs |