mozilla-idldir.patch
author Wolfgang Rosenauer <wr@rosenauer.org>
Mon, 19 Oct 2015 11:59:08 +0200
branchfirefox41
changeset 884 d9d863421693
parent 869 0dd25a92df97
child 904 6a889427cd4f
permissions -rw-r--r--
42.0.2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
556
a30fcfcd2e53 manual merge from firefox16 changes
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     1
# HG changeset patch
716
cef565f1c325 update to Firefox 29.0b7
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
     2
# Parent 1cd1e78dfe63c1a7bcfc0707697bb99bcfea19c4
556
a30fcfcd2e53 manual merge from firefox16 changes
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     3
# User Wolfgang Rosenauer <wr@rosenauer.org>
869
0dd25a92df97 working FF 40 build
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 716
diff changeset
     4
# Parent  015730e17931512895a5ad4d5130eff4258cf03e
556
a30fcfcd2e53 manual merge from firefox16 changes
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     5
Install IDL files to includedir instead of /usr/share/idl
a30fcfcd2e53 manual merge from firefox16 changes
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     6
a30fcfcd2e53 manual merge from firefox16 changes
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     7
diff --git a/config/baseconfig.mk b/config/baseconfig.mk
a30fcfcd2e53 manual merge from firefox16 changes
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     8
--- a/config/baseconfig.mk
a30fcfcd2e53 manual merge from firefox16 changes
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     9
+++ b/config/baseconfig.mk
716
cef565f1c325 update to Firefox 29.0b7
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
    10
@@ -1,14 +1,14 @@
cef565f1c325 update to Firefox 29.0b7
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
    11
 # This file is normally included by autoconf.mk, but it is also used
cef565f1c325 update to Firefox 29.0b7
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
    12
 # directly in python/mozbuild/mozbuild/base.py for gmake validation.
cef565f1c325 update to Firefox 29.0b7
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
    13
 # We thus use INCLUDED_AUTOCONF_MK to enable/disable some parts depending
cef565f1c325 update to Firefox 29.0b7
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
    14
 # whether a normal build is happening or whether the check is running.
556
a30fcfcd2e53 manual merge from firefox16 changes
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    15
 includedir := $(includedir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
a30fcfcd2e53 manual merge from firefox16 changes
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    16
-idldir = $(datadir)/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
a30fcfcd2e53 manual merge from firefox16 changes
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    17
+idldir = $(includedir)
a30fcfcd2e53 manual merge from firefox16 changes
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    18
 installdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
a30fcfcd2e53 manual merge from firefox16 changes
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    19
 sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel-$(MOZ_APP_VERSION)
716
cef565f1c325 update to Firefox 29.0b7
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
    20
 ifndef TOP_DIST
cef565f1c325 update to Firefox 29.0b7
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
    21
 TOP_DIST = dist
cef565f1c325 update to Firefox 29.0b7
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
    22
 endif
cef565f1c325 update to Firefox 29.0b7
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
    23
 ifneq (,$(filter /%,$(TOP_DIST)))
cef565f1c325 update to Firefox 29.0b7
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
    24
 DIST = $(TOP_DIST)
cef565f1c325 update to Firefox 29.0b7
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
    25
 else