forked from pool/dos2unix
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:
parent
345b00ff43
commit
be062a9cd3
@ -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
|
Wed Jul 5 19:33:38 UTC 2017 - waterlan@xs4all.nl
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ format to DOS format and unix2dos converts from UNIX to MAC format.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
find . -type f | xargs chmod -x
|
find . -type f -exec chmod -x '{}' \;
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export RPM_OPT_FLAGS
|
export RPM_OPT_FLAGS
|
||||||
|
Loading…
Reference in New Issue
Block a user