Closed
Bug 486036
Opened 17 years ago
Closed 16 years ago
[PATCH] make install fails for Darwin/X11, but it should only die for OSX/Cocoa
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: jeremyhu, Assigned: jeremyhu)
References
Details
Attachments
(1 file, 1 obsolete file)
709 bytes,
patch
|
benjamin
:
review+
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1b3) Gecko/20090305 Firefox/3.1b3
Build Identifier: xulrunner 1.9.0.7 OSX/darwin X11
~/src/macports-trunk/dports/devel/xulrunner $ cat files/make-install.patch
--- toolkit/mozapps/installer/packager.mk.bak 2009-03-30 17:04:13.000000000 -0700
+++ toolkit/mozapps/installer/packager.mk 2009-03-30 17:05:06.000000000 -0700
@@ -410,7 +410,10 @@ make-package: stage-package
# dist/sdk/lib -> prefix/lib/appname-devel-version/lib
# prefix/lib/appname-devel-version/* symlinks to the above directories
install:: stage-package
-ifneq (,$(filter WINNT Darwin,$(OS_ARCH)))
+ifneq (,$(filter WINNT,$(OS_ARCH)))
+ $(error "make install" is not supported on this platform. Use "make package" instead.)
+endif
+ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
$(error "make install" is not supported on this platform. Use "make package" instead.)
endif
$(NSINSTALL) -D $(DESTDIR)$(installdir)
Reproducible: Always
Assignee | ||
Comment 1•17 years ago
|
||
I hope I'm doing the review process correctly. Please tell me if setting "review" to "?" was not the correct thing to do.
Attachment #370262 -
Flags: review?
Assignee | ||
Updated•17 years ago
|
Attachment #370262 -
Flags: review? → review?(benjamin)
Assignee | ||
Updated•16 years ago
|
Assignee: nobody → jeremyhu
Assignee | ||
Updated•16 years ago
|
Status: UNCONFIRMED → ASSIGNED
Ever confirmed: true
Comment 2•16 years ago
|
||
Comment on attachment 370262 [details] [diff] [review]
Darwin/gtk fix for make install target
This should be conditioned on MOZILLA_FS_LAYOUT
Attachment #370262 -
Flags: review?(benjamin) → review-
Assignee | ||
Comment 3•16 years ago
|
||
Attachment #370262 -
Attachment is obsolete: true
Attachment #372573 -
Flags: review?(benjamin)
Updated•16 years ago
|
Attachment #372573 -
Flags: review?(benjamin) → review+
Assignee | ||
Updated•16 years ago
|
Keywords: checkin-needed
http://hg.mozilla.org/mozilla-central/rev/cf62d5aef19e
Thanks Jeremy!
You need to log in
before you can comment on or make changes to this bug.
Description
•