aboutsummaryrefslogtreecommitdiff
path: root/astro/routino/files/patch-xml_Makefile
blob: bea51b99e0a24143a82afd444f5f9a8a2fc62be0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- xml/Makefile.orig	2015-05-28 18:03:07 UTC
+++ xml/Makefile
@@ -56,12 +56,12 @@ test:
 install: all
 	@[ -d $(DESTDIR)$(datadir) ] || mkdir -p $(DESTDIR)$(datadir)
 	@for file in $(STANDARD_FILES) ; do \
-	    echo cp routino-$$file $(DESTDIR)$(datadir)/$$file ;\
-	    cp -f routino-$$file $(DESTDIR)$(datadir)/$$file ;\
+	    echo install routino-$$file $(DESTDIR)$(datadir)/$$file ;\
+	    install routino-$$file $(DESTDIR)$(datadir)/$$file ;\
 	 done
 	@for file in $(SPECIAL_FILES); do \
-	    echo cp $$file $(DESTDIR)$(datadir)/$$file ;\
-	    cp -f $$file $(DESTDIR)$(datadir)/$$file ;\
+	    echo install $$file $(DESTDIR)$(datadir)/$$file ;\
+	    install $$file $(DESTDIR)$(datadir)/$$file ;\
 	 done
 
 ########