summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-03-20 18:52:34 +0000
committerJeremy Katz <katzj@redhat.com>2007-03-20 18:52:34 +0000
commit20a2c9427f1931505416ec9c9c751bbad90aa1a7 (patch)
tree42eb27f88bebd775ce4452d4eb764e32c4c39ad5 /Makefile
parent6a17a281bc44c40d44c3608ffe511b5362958f08 (diff)
downloadanaconda-20a2c9427f1931505416ec9c9c751bbad90aa1a7.tar.gz
anaconda-20a2c9427f1931505416ec9c9c751bbad90aa1a7.tar.xz
anaconda-20a2c9427f1931505416ec9c9c751bbad90aa1a7.zip
2007-03-20 Jeremy Katz <katzj@redhat.com>
* liveinst/: Add bits for live CD hard drive installation kick off to anaconda for now. * anaconda.spec: Likewise. * Makefile: Likewise.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index fc1045dc7..1ae410704 100644
--- a/Makefile
+++ b/Makefile
@@ -8,14 +8,14 @@ SUBDIRS = isys wlite stubs loader2 po \
textw utils scripts bootdisk installclasses \
iw pixmaps isomd5sum command-stubs ui
# fonts aren't on s390/s390x
-ifneq (s390, $(ARCH))
-ifneq (s390x, $(ARCH))
+ifeq (,$(filter s390 s390x, $(ARCH)))
SUBDIRS += fonts
endif
-endif
+ifneq (,$(filter i386 x86_64,$(ARCH)))
+# we only do the liveinst bits on i386/x86_64 for now
+SUBDIRS += liveinst
# gptsync only on x86 for mactels right now
-ifeq (i386, $(ARCH))
SUBDIRS += gptsync
endif