Accepting request 508458 from home:dimstar:Factory

- Use find -exec instead of find | xargs: helps handle cases for
  files with spaces and quotes in their filenames.

OBS-URL: https://build.opensuse.org/request/show/508458
OBS-URL: https://build.opensuse.org/package/show/Base:System/dos2unix?expand=0&rev=80
This commit is contained in:
Dirk Mueller 2017-07-06 11:30:12 +00:00 committed by Git OBS Bridge
parent 345b00ff43
commit be062a9cd3
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Jul 6 07:50:15 UTC 2017 - dimstar@opensuse.org
- Use find -exec instead of find | xargs: helps handle cases for
files with spaces and quotes in their filenames.
-------------------------------------------------------------------
Wed Jul 5 19:33:38 UTC 2017 - waterlan@xs4all.nl

View File

@ -37,7 +37,7 @@ format to DOS format and unix2dos converts from UNIX to MAC format.
%prep
%setup -q
find . -type f | xargs chmod -x
find . -type f -exec chmod -x '{}' \;
%build
export RPM_OPT_FLAGS