about summary refs log tree commit diff
path: root/corepkgs
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2003-07-30T10·14+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2003-07-30T10·14+0000
commitaaee69cfdef287406715fb3befd7debd3a5c6ce9 (patch)
tree9d58e5367645fff91191b8292adeb8b5a6d96a5d /corepkgs
parent83075304e5639dcab3d386eb7813c73b97c67685 (diff)
* INSTALL_DATA -> INSTALL_PROGRAM to ensure that the execute bit
  remains set.

Diffstat (limited to 'corepkgs')
-rw-r--r--corepkgs/fetchurl/Makefile.am2
-rw-r--r--corepkgs/nar/Makefile.am4
2 files changed, 3 insertions, 3 deletions
diff --git a/corepkgs/fetchurl/Makefile.am b/corepkgs/fetchurl/Makefile.am
index 44e07280fea1..72741ac23f0f 100644
--- a/corepkgs/fetchurl/Makefile.am
+++ b/corepkgs/fetchurl/Makefile.am
@@ -3,7 +3,7 @@ all-local: fetchurl.sh
 install-exec-local:
 	$(INSTALL) -d $(datadir)/fix/fetchurl
 	$(INSTALL_DATA) fetchurl.fix $(datadir)/fix/fetchurl
-	$(INSTALL_DATA) fetchurl.sh $(datadir)/fix/fetchurl
+	$(INSTALL_PROGRAM) fetchurl.sh $(datadir)/fix/fetchurl
 
 include ../../substitute.mk
 
diff --git a/corepkgs/nar/Makefile.am b/corepkgs/nar/Makefile.am
index 4cb59ae398e1..f6eb27747e8b 100644
--- a/corepkgs/nar/Makefile.am
+++ b/corepkgs/nar/Makefile.am
@@ -3,9 +3,9 @@ all-local: nar.sh unnar.sh
 install-exec-local:
 	$(INSTALL) -d $(datadir)/fix/nar
 	$(INSTALL_DATA) nar.fix $(datadir)/fix/nar
-	$(INSTALL_DATA) nar.sh $(datadir)/fix/nar
+	$(INSTALL_PROGRAM) nar.sh $(datadir)/fix/nar
 	$(INSTALL_DATA) unnar.fix $(datadir)/fix/nar
-	$(INSTALL_DATA) unnar.sh $(datadir)/fix/nar
+	$(INSTALL_PROGRAM) unnar.sh $(datadir)/fix/nar
 
 include ../../substitute.mk