Comment 5 for bug 863101

Revision history for this message
Marcin Juszkiewicz (hrw) wrote :

This patch is hardcoding /usr/TRIPLET/include for cross builds. Normally it is PF/TRIPLET/include but gcc-snapshot has PF != /usr so it does not work.

I think that this can be changed to:

ifeq (gcc-snapshot)
  debian_patches += cross-include-trunk.diff
else
  debian_patches += cross-include.diff
endif

way where attached patch would be used to create cross-include-trunk.diff

cause I would prefer to not hardcode it for all cases. Opinion?