#2299 closed defect (fixed)
libxml2-2.6.27 sed error
Reported by: | Steffen Pankratz | Owned by: | |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | BOOK | Version: | |
Severity: | normal | Keywords: | |
Cc: |
Description ¶
The first line from the book (sed -i 's|/bin/tar|& --wildcards|' xstc/Makefile) gives this error: sed: can't read xstc/Makefile: No such file or directory
I tried both tar balls links from the book, there is no Makefile
ls -l1 xstc/Makefile.* -rw-r--r-- 1 kratz00 users 5175 Oct 11 09:59 xstc/Makefile.am -rw-r--r-- 1 kratz00 users 16890 Oct 25 17:56 xstc/Makefile.in
Change History (7)
comment:1 by , 18 years ago
comment:2 by , 18 years ago
Milestone: | future → 6.2.1 |
---|---|
Owner: | changed from | to
Status: | new → assigned |
Version: | SVN |
Randy, maybe it would be better if we patched Makefile.in. It looks like this would accomplish the same thing:
sed -i 's/@TAR@/& --wildcards/' xstc/Makefile.in
since the Makefile seems to use $(TAR).
comment:3 by , 18 years ago
Running configure first does the job :) So somebody should update the book.
Thank you.
comment:4 by , 18 years ago
Thanks. For consistency with the rest of the book where we do any source fixes before configure, I'm going to test what I put above and see if it works.
comment:5 by , 18 years ago
kratz00, do you have a name I can acknowledge you with in the ChangeLog?
comment:6 by , 18 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Fixed at r6654. I'll change the acknowledgment in the Changelog later if we get a response.
Try running configure first, then do the sed.