diff options
author | Erik Troan <ewt@redhat.com> | 2000-04-03 21:40:23 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-04-03 21:40:23 +0000 |
commit | 0c6060ffd55b74ef73ea795292cb1e7e996fd9c6 (patch) | |
tree | 7509a986379f26492586fca87a8d26c7d69e1b37 | |
parent | dc1dd64bd90fa1947751ca8fe8d5581fa4129935 (diff) | |
download | anaconda-0c6060ffd55b74ef73ea795292cb1e7e996fd9c6.tar.gz anaconda-0c6060ffd55b74ef73ea795292cb1e7e996fd9c6.tar.xz anaconda-0c6060ffd55b74ef73ea795292cb1e7e996fd9c6.zip |
*** empty log message ***
-rw-r--r-- | bootdisk/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bootdisk/Makefile b/bootdisk/Makefile index 48d628bf5..ef9bd5d41 100644 --- a/bootdisk/Makefile +++ b/bootdisk/Makefile @@ -5,5 +5,7 @@ all: install: rm -rf $(DESTDIR)/$(RUNTIMEDIR)/boot mkdir -p $(DESTDIR)/$(RUNTIMEDIR)/boot - cp -av $(ARCH)/[a-z]* $(DESTDIR)/$(RUNTIMEDIR)/boot + if [ -d $(ARCH) ]; then \ + cp -av $(ARCH)/[a-z]* $(DESTDIR)/$(RUNTIMEDIR)/boot; \ + fi |