[Fedora-spins] [spin-kickstarts] Fix install target

Bruno Wolff III bruno at fedoraproject.org
Sat Jun 29 20:01:03 UTC 2013


commit 629a71433c624de87341589474d10fc83191dc73
Author: Bruno Wolff III <bruno at wolff.to>
Date:   Sat Jun 29 14:59:42 2013 -0500

    Fix install target
    
    Installing a mix of directories and files on the same install
    command doesn't work.

 Makefile |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/Makefile b/Makefile
index 888ba30..2d97c58 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,9 @@ name := spin-kickstarts
 all: dist
 
 install:
-	install *.ks custom l10n $(DATADIR)/$(name)
+	install *{.ks,.ks.in} $(DATADIR)/$(name)
+	install custom/*{.ks,.ks.in} $(DATADIR)/$(name)/custom
+	install l10n/*{.ks,.ks.in} $(DATADIR)/$(name)/l10n
 	install AUTHORS COPYING README $(DOCDIR)/$(name)
 
 clean:


More information about the spins mailing list