Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 308362 Details for
Bug 243157
brp-java-repack-jars fails if jar file contains filenames with spaces
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Patch for brp-java-repack-jars to fix the space issue
brp-java-repack-jars.fixspaces.diff (text/plain), 1.05 KB, created by
Peter Bieringer
on 2008-06-04 16:00:05 UTC
(
hide
)
Description:
Patch for brp-java-repack-jars to fix the space issue
Filename:
MIME Type:
Creator:
Peter Bieringer
Created:
2008-06-04 16:00:05 UTC
Size:
1.05 KB
patch
obsolete
>--- brp-java-repack-jars.orig 2008-06-04 15:31:48.000000000 +0000 >+++ brp-java-repack-jars 2008-06-04 15:57:47.000000000 +0000 >@@ -36,8 +36,8 @@ > rm -f $j > > # Create the directories first. >- for d in `find -type d | LC_ALL=C sort`; do >- mkdir -p $JARDIR/$d >+ find -type d | LC_ALL=C sort | while read d; do >+ mkdir -p "$JARDIR/$d" > done > > # Get the modtime from the newest ChangeLog. If the project >@@ -62,14 +62,16 @@ > > # move the contents over to the a new directory in order and set > # the times. >- for f in `find -type f | LC_ALL=C sort`; do >- cp $f $JARDIR/$f >- touch --date="$DATE" $JARDIR/$f >+ find -type f | LC_ALL=C sort | while read f; do >+ cp "$f" "$JARDIR/$f" >+ touch --date="$DATE" "$JARDIR/$f" > done > popd > /dev/null > > # Set the times of the directories. >- touch --date="$DATE" `find $JARDIR -type d` >+ find $JARDIR -type d | while read d; do >+ touch --date="$DATE" "$d" >+ done > > # make the jar > pushd $JARDIR > /dev/null
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 243157
: 308362 |
312978