Closed Bug 979685 Opened 10 years ago Closed 10 years ago

Rewrite the qcms Makefile.in in moz.build

Categories

(Firefox Build System :: General, defect)

defect
Not set
normal

Tracking

(Not tracked)

RESOLVED FIXED
mozilla30

People

(Reporter: ehsan.akhgari, Assigned: ehsan.akhgari)

References

Details

Attachments

(1 file, 1 obsolete file)

      No description provided.
Assignee: nobody → ehsan
Attachment #8385790 - Flags: review?(mshal)
Attachment #8385790 - Flags: review?(mh+mozilla)
Attachment #8385790 - Flags: review?(gps)
Comment on attachment 8385790 [details] [diff] [review]
Rewrite the qcms Makefile.in in moz.build

>+        if CONFIG['OS_ARCH'] == 'WINNT' and '64' in CONFIG['OS_TEST']:

Since the Makefile has:

   ifneq ($(OS_ARCH)_$(OS_TEST),WINNT_x86_64)

I think this should be:

   if CONFIG['OS_ARCH'] != 'WINNT' or CONFIG['OS_TEST'] != 'x86_64':

>+elif CONFIG['CPU_ARCH'] == 'ppc':

Here the Makefile has:

   ifeq (ppc,$(findstring ppc,$(CPU_ARCH)))

which I think should be:

   elif 'ppc' in CONFIG['CPU_ARCH']:

The rest looks fine to me! Let me know if I misinterpreted these.
Attachment #8385790 - Flags: review?(mshal)
Attachment #8385790 - Flags: review?(mh+mozilla)
Attachment #8385790 - Flags: review?(gps)
Attachment #8385790 - Flags: feedback+
Comment on attachment 8385790 [details] [diff] [review]
Rewrite the qcms Makefile.in in moz.build

You're right.
Attachment #8385790 - Attachment is obsolete: true
Attachment #8385859 - Flags: review?(mshal)
Attachment #8385859 - Flags: review?(mshal) → review+
https://hg.mozilla.org/mozilla-central/rev/c05786691c47
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla30
Product: Core → Firefox Build System
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: