mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
817 B

  1. pass the install location for locales (datadir) to subdirectories
  2. --- gcc-3.4.2/libstdc++-v3/Makefile.in 2004-03-18 18:35:12.000000000 +0100
  3. +++ gcc-3.4.2/libstdc++-v3/Makefile.in-p 2004-11-04 01:40:40.864092240 +0100
  4. @@ -220,6 +220,8 @@
  5. AM_CPPFLAGS = $(GLIBCXX_INCLUDES)
  6. @GLIBCXX_HOSTED_TRUE@hosted_source = src po
  7. SUBDIRS = include libmath libsupc++ $(hosted_source) testsuite
  8. +SUBDIR_FLAGS_TO_PASS = \
  9. + "datadir=$(datadir)"
  10. # Multilib support.
  11. MAKEOVERRIDES =
  12. @@ -370,7 +372,7 @@
  13. else \
  14. local_target="$$target"; \
  15. fi; \
  16. - (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  17. + (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $(SUBDIR_FLAGS_TO_PASS) $$local_target) \
  18. || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
  19. done; \
  20. if test "$$dot_seen" = "no"; then \