~ubuntu-branches/debian/sid/gcc-4.8/sid

« back to all changes in this revision

Viewing changes to .svn/pristine/42/42dab68e828ada36d720ce2865737c74da599a6b.svn-base

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-12-19 19:48:34 UTC
  • Revision ID: package-import@ubuntu.com-20141219194834-4dz1q7rrn5pad823
Tags: 4.8.4-1
* GCC 4.8.4 release.
  - Fix PR target/61407 (darwin), PR middle-end/58624 (ice),
    PR sanitizer/64265 (wrong code).
* Require recent binutils to pass go test failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
$(lib_binaries) += base
 
2
 
 
3
# ---------------------------------------------------------------------------
 
4
# gcc-base
 
5
 
 
6
ifneq (,$(filter $(distrelease),oneiric precise wheezy sid))
 
7
  additional_links =
 
8
else ifneq (,$(filter $(distrelease),))
 
9
  additional_links =
 
10
else
 
11
  additional_links =
 
12
endif
 
13
 
 
14
$(binary_stamp)-base: $(install_dependencies)
 
15
        dh_testdir
 
16
        dh_testroot
 
17
        rm -rf $(d_base)
 
18
        dh_installdirs -p$(p_base) \
 
19
                $(gcc_lexec_dir)
 
20
 
 
21
        ln -sf $(BASE_VERSION) \
 
22
            $(d_base)/$(subst /$(BASE_VERSION),/$(GCC_VERSION),$(gcc_lib_dir))
 
23
        for link in $(additional_links); do \
 
24
          ln -sf $(BASE_VERSION) \
 
25
            $(d_base)/$$(dirname $(gcc_lib_dir))/$$link; \
 
26
        done
 
27
ifneq ($(gcc_lib_dir),$(gcc_lexec_dir))
 
28
        ln -sf $(BASE_VERSION) \
 
29
            $(d_base)/$(subst /$(BASE_VERSION),/$(GCC_VERSION),$(gcc_lexec_dir))
 
30
        for link in $(additional_links); do \
 
31
          ln -sf $(BASE_VERSION) \
 
32
            $(d_base)/$$(dirname $(gcc_lexec_dir))/$$link; \
 
33
        done
 
34
endif
 
35
 
 
36
        dh_installdocs -p$(p_base) debian/README.Debian.$(DEB_TARGET_ARCH)
 
37
        rm -f $(d_base)/usr/share/doc/$(p_base)/README.Debian
 
38
        dh_installchangelogs -p$(p_base)
 
39
        dh_compress -p$(p_base)
 
40
        dh_fixperms -p$(p_base)
 
41
        dh_gencontrol -p$(p_base) -- -v$(DEB_VERSION) $(common_substvars)
 
42
        dh_installdeb -p$(p_base)
 
43
        dh_md5sums -p$(p_base)
 
44
        dh_builddeb -p$(p_base)
 
45
        touch $@