diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2023-05-09 00:31:35 +0300 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-05-10 02:51:31 +0200 |
commit | 19558c940e81d405dbda0ea1dd29549f34b5aa2a (patch) | |
tree | 73648fddc174626389c375131f98b3a619464349 /Makefile | |
parent | 6616fae3ee553b2d9c2da81ff38db3232185bd39 (diff) | |
download | hurd-19558c940e81d405dbda0ea1dd29549f34b5aa2a.tar.gz hurd-19558c940e81d405dbda0ea1dd29549f34b5aa2a.tar.bz2 hurd-19558c940e81d405dbda0ea1dd29549f34b5aa2a.zip |
Disable Linux-based pfinet on x86_64
Message-Id: <20230508213136.608575-41-bugaevc@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -36,7 +36,7 @@ lib-subdirs = libshouldbeinlibc libihash libiohelp libports \ # Hurd programs prog-subdirs = auth proc exec term \ ext2fs isofs tmpfs fatfs \ - storeio pflocal pfinet defpager mach-defpager \ + storeio pflocal defpager mach-defpager \ login daemons boot console \ hostmux usermux ftpfs trans \ console-client utils sutils libfshelp-tests \ @@ -48,6 +48,10 @@ prog-subdirs = auth proc exec term \ eth-multiplexer \ shutdown +ifneq ($(machine),x86_64) +prog-subdirs += pfinet +endif + ifeq ($(HAVE_LIBRUMP),yes) prog-subdirs += rumpdisk endif |