summaryrefslogtreecommitdiffstats
path: root/installclasses
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2001-01-09 21:18:52 +0000
committerBill Nottingham <notting@redhat.com>2001-01-09 21:18:52 +0000
commitba19be0827fdf1680e22c5916802547b7cde35c6 (patch)
treee0ea27354e5c8eea7e9fa679f63b98b257575f5f /installclasses
parentcc06dac9d80290c3a6bee3e36373f63b26fca8fa (diff)
downloadanaconda-ba19be0827fdf1680e22c5916802547b7cde35c6.tar.gz
anaconda-ba19be0827fdf1680e22c5916802547b7cde35c6.tar.xz
anaconda-ba19be0827fdf1680e22c5916802547b7cde35c6.zip
don't do laptop installs on non-x86
Diffstat (limited to 'installclasses')
-rw-r--r--installclasses/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/installclasses/Makefile b/installclasses/Makefile
index 256e14c68..6dd6a4c2c 100644
--- a/installclasses/Makefile
+++ b/installclasses/Makefile
@@ -1,11 +1,18 @@
+
include ../Makefile.inc
+ifeq (i386, $(ARCH))
+CLASSES = $(shell ls *.py)
+else
+CLASSES = $(shell ls *.py | grep -v laptop)
+endif
+
all:
echo "nothing to make"
install:
mkdir -p $(DESTDIR)/$(PYTHONLIBDIR)/installclasses
- install *.py $(DESTDIR)/$(PYTHONLIBDIR)/installclasses
+ install $(CLASSES) $(DESTDIR)/$(PYTHONLIBDIR)/installclasses
../py-compile --basedir $(DESTDIR)/$(PYTHONLIBDIR)/installclasses $(DESTDIR)/$(PYTHONLIBDIR)/installclasses/*.py
clean: