diff options
author | lewie <unknown> | 2002-01-23 17:51:46 +0000 |
---|---|---|
committer | lewie <unknown> | 2002-01-23 17:51:46 +0000 |
commit | d3bd93cf2747fabb8bd7c6df434c9ce98d0fc253 (patch) | |
tree | 20c1e01359fc09ceb8774cb4afe98e80580251ac /mk/paths.mk | |
parent | 92cdc09e48d3410182581f5bd687d1ee7cbe476b (diff) | |
download | haskell-d3bd93cf2747fabb8bd7c6df434c9ce98d0fc253.tar.gz |
[project @ 2002-01-23 17:51:46 by lewie]
Add special case for installing shared libs (which need the execute bit set).
Diffstat (limited to 'mk/paths.mk')
-rw-r--r-- | mk/paths.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mk/paths.mk b/mk/paths.mk index bbcdd787d8..1ed2ed9a3c 100644 --- a/mk/paths.mk +++ b/mk/paths.mk @@ -47,12 +47,13 @@ endif SRC_INSTALL_OPTS += $(INSTALL_OWNER) $(INSTALL_GROUP) # -# Invocations of `install' for the three different classes +# Invocations of `install' for the four different classes # of targets: # INSTALL_PROGRAM = $(INSTALL) -m 755 INSTALL_SCRIPT = $(INSTALL) -m 755 +INSTALL_SHLIB = $(INSTALL) -m 755 INSTALL_DATA = $(INSTALL) -m 644 INSTALL_DIR = $(FPTOOLS_TOP)/glafp-utils/mkdirhier/mkdirhier |