Closed
Bug 296707
Opened 20 years ago
Closed 20 years ago
Bug 295494 breakage: errors in config/rules.mk during "make install"
Categories
(Firefox Build System :: General, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: bastiaan, Assigned: bastiaan)
References
Details
Attachments
(1 file)
|
915 bytes,
patch
|
benjamin
:
review+
benjamin
:
approval-aviary1.1a2+
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8b2) Gecko/20050605 Firefox/1.0+ Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8b2) Gecko/20050605 Firefox/1.0+ firefox "make install" fails with: /home/baafie/src/mozilla/obj-ff-trunk-gcc/config/nsinstall -D "/usr/lib/firefox-1.0+/inspector@mozilla.org" cd ../../dist/xpi-stage/inspector && tar -cvhf - * | (cd "/usr/lib/firefox-1.0+/extensions/inspector@mozilla.org && tar -xf -) /bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /bin/sh: -c: line 1: syntax error: unexpected end of file make[2]: *** [install] Error 2 make[2]: Leaving directory `/home/baafie/src/mozilla/obj-ff-trunk-gcc/extensions/inspector' make[1]: *** [install] Error 2 make[1]: Leaving directory `/home/baafie/src/mozilla/obj-ff-trunk-gcc/extensions' make: *** [install] Error 2 Reproducible: Always Steps to Reproduce: 1. type make install 2. .. 3. profit!! Actual Results: build failed. boo-hoo Expected Results: succeed in installing. these are the relevant lines from config/rules.mk: 1654 install:: 1655 $(NSINSTALL) -D "$(DESTDIR)$(mozappdir)/$(INSTALL_EXTENSION_ID)" 1656 cd $(FINAL_TARGET) && tar $(TAR_CREATE_FLAGS) - * | (cd "$(DESTDIR)$(mozappdir)/extensions/$(INSTALL_EXTENSION_ID) && tar -xf -) 1657 endif The first obvious problem is the mismatching of double quotes on line 1656. In addition, $(DESTDIR)$(mozappdir)/$(INSTALL_EXTENSION_ID) is created, whilst the author presumably intended to create $(DESTDIR)$(mozappdir)/extensions/$(INSTALL_EXTENSION_ID).
| Assignee | ||
Comment 1•20 years ago
|
||
Create the correct directory and match the double quotes.
Attachment #185399 -
Flags: superreview?(darin)
Attachment #185399 -
Flags: review?(benjamin)
Comment 2•20 years ago
|
||
*** Bug 296706 has been marked as a duplicate of this bug. ***
Comment 3•20 years ago
|
||
Comment on attachment 185399 [details] [diff] [review] Fix r+a=me
Attachment #185399 -
Flags: superreview?(darin)
Attachment #185399 -
Flags: review?(benjamin)
Attachment #185399 -
Flags: review+
Attachment #185399 -
Flags: approval-aviary1.1a2+
Updated•20 years ago
|
Assignee: nobody → baafie
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 4•20 years ago
|
||
Checking in config/rules.mk; /cvsroot/mozilla/config/rules.mk,v <-- rules.mk new revision: 3.476; previous revision: 3.475 done
Status: NEW → RESOLVED
Closed: 20 years ago
Resolution: --- → FIXED
Updated•7 years ago
|
Product: Core → Firefox Build System
You need to log in
before you can comment on or make changes to this bug.
Description
•