Open Bug 1163838 Opened 9 years ago Updated 2 years ago

Consolidate SunOS code path in xpcom/reflect/xptcall/md/unix/moz.build

Categories

(Firefox Build System :: General, defect)

defect

Tracking

(Not tracked)

People

(Reporter: glandium, Unassigned)

References

Details

From bug 1162846 comment 2:

>+if CONFIG['OS_ARCH'] == 'SunOS' and '86' in CONFIG['OS_TEST']:
>+if CONFIG['OS_ARCH'] == 'SunOS' and '86' not in CONFIG['OS_TEST']:

It might make sense to combine the SunOS logic into one spot, rather than have the x86 sources in one part and the sparc sources in another. Eg:

if CONFIG['OS_ARCH'] == 'SunOS':
   if '86' in CONFIG['OS_TEST']:
      x86_64 / x86 stuff
   else:
      sparc stuff

But that's only tangentially related.
Product: Core → Firefox Build System
Severity: normal → S3
You need to log in before you can comment on or make changes to this bug.