diff options
author | Roland McGrath <roland@gnu.org> | 1995-04-01 04:46:41 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-04-01 04:46:41 +0000 |
commit | 2ff8f479aa69c975278f237b02efb95870aa2651 (patch) | |
tree | b0aa4caab36aa8a5dfed054f3856cdc2a19469f1 /Makeconf | |
parent | 1551b621eb3fb0dcc90ca1e29d8d57e164cc6fd4 (diff) |
[makemode=library] (install): Use $(INSTALL_DATA).
Diffstat (limited to 'Makeconf')
-rw-r--r-- | Makeconf | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -146,8 +146,8 @@ endif ifeq ($(makemode),library) all: $(libname).a install: $(libname).a $(installhdrs) - cp $(installhdrs) $(includedir)/hurd/ - cp $(libname).a $(hurdinst)/lib/$(libname).a + $(INSTALL_DATA) $(installhdrs) $(includedir)/hurd/ + $(INSTALL_DATA) $(libname).a $(hurdinst)/lib/$(libname).a ranlib $(hurdinst)/lib/$(libname).a endif |