summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorWill Woods <wwoods@redhat.com>2008-04-24 18:34:57 -0400
committerJeremy Katz <katzj@redhat.com>2008-04-24 22:24:33 -0400
commite46886509fdbe7b40ce4c1b00ad43eae8e092b5f (patch)
tree11aaae30083e921d3257d599e15ddc8a16180c88 /Makefile
parent92bef3b234814acd86c321ad642337f49395e036 (diff)
downloadanaconda-e46886509fdbe7b40ce4c1b00ad43eae8e092b5f.tar.gz
anaconda-e46886509fdbe7b40ce4c1b00ad43eae8e092b5f.tar.xz
anaconda-e46886509fdbe7b40ce4c1b00ad43eae8e092b5f.zip
fix testiso Makefile target - boot.iso, not netinst.iso
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4a2a3b54f..2d1772cfd 100644
--- a/Makefile
+++ b/Makefile
@@ -72,9 +72,9 @@ subdirs:
testiso: install
@if [ "$(REPO)" = "" ]; then echo "ERROR: Need a repo to pull packages from!" ; exit 1 ; fi
- @pushd scripts ; sudo ./buildinstall --version $(VERSION) --product anaconda --release $(ANACONDA)-$(VERSION) --output $(shell pwd)/outiso --updates $(DESTDIR) $(REPO) ; popd ; cp outiso/images/netinst.iso ./netinst.iso ; sudo rm -rf outiso
+ @pushd scripts ; sudo ./buildinstall --version $(VERSION) --product anaconda --release $(ANACONDA)-$(VERSION) --output $(shell pwd)/outiso --updates $(DESTDIR) $(REPO) ; popd ; cp outiso/images/boot.iso ./boot.iso ; sudo rm -rf outiso
@echo
- @echo "Test iso is located at ./netinst.iso"
+ @echo "Test iso is located at ./boot.iso"
install:
@if [ "$(DESTDIR)" = "" ]; then \