On Tue, 23 Apr 2002, Steve Langasek wrote:
> make-target:
>       if [ $(DEB_HOST_GNU_TYPE) = "hppa-linux" ]; then \

This WILL break when dpkg-architecture is finally fixed to return the proper
gnu host type.  A test for hppa-linux* is better, you could use case..esac
for that.

Or just go GNU make all the way:

ifneq (,$(findstring hppa-linux,$(DEB_HOST_GNU_TYPE)))
        DO SOMETHING FOR hppa-linux* here
endif

-- 
  "One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie." -- The Silicon Valley Tarot
  Henrique Holschuh


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to