mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-09 15:58:05 +02:00
makefiles: recognize GNU/Hurd
Set HOST_HURD & HOST_UNIX for GNU/Hurd in the makefile-based build system; the latter variable is important as it will include all the commit Unix bits.
This commit is contained in:
parent
2b78561335
commit
d7f46cf28e
1 changed files with 4 additions and 0 deletions
|
@ -29,4 +29,8 @@ ifdef HOST_OS
|
||||||
HOST_SOLARIS = 1
|
HOST_SOLARIS = 1
|
||||||
HOST_UNIX = 1
|
HOST_UNIX = 1
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(HOST_KERNEL), gnu)
|
||||||
|
HOST_HURD = 1
|
||||||
|
HOST_UNIX = 1
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue