#3105 closed defect (fixed)
XULRunner-1.9.2 instructions have wrong install parameters for /usr/lib/mozilla
Reported by: | Dominic Jones | Owned by: | |
---|---|---|---|
Priority: | normal | Milestone: | x-future |
Component: | BOOK | Version: | SVN |
Severity: | normal | Keywords: | |
Cc: |
Description ¶
The XULRunner-1.9.2 instructions include the following statement, apparently intended to create the directory /usr/lib/mozilla:
install -v -m644 /usr/lib/mozilla
This line created an error when during my install, apparently due to the install call not having the correct number/type of parameters. It appears that the line should create the directory /usr/lib/mozilla. In this case, I believe the line should be:
install -d -m755 /usr/lib/mozilla
Change History (4)
comment:1 by , 15 years ago
comment:2 by , 15 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
mea culpa. Thanks for noticing!
Note:
See TracTickets
for help on using tickets.
Now the line reads
install -v -d-m644 /usr/lib/mozilla &&
That should read:
install -v -d -m644 /usr/lib/mozilla &&