diff options
author | Roland McGrath <roland@gnu.org> | 1996-05-09 19:30:57 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-05-09 19:30:57 +0000 |
commit | 05d4c982198805983d6d7a39b08b1d75eac79387 (patch) | |
tree | 3ea219f6741c13e194718865051989f81cbea3d9 /Makerules | |
parent | 3e2632b62d7633b44458d023b32706229e58a31c (diff) | |
download | glibc-05d4c982198805983d6d7a39b08b1d75eac79387.tar.gz glibc-05d4c982198805983d6d7a39b08b1d75eac79387.tar.xz glibc-05d4c982198805983d6d7a39b08b1d75eac79387.zip |
* Makerules (versioned): Strip whitespace.
* Rules (static-only-routines rule): Remove spurious space in dep. * misc/getusershell.c: Undo changes of 7 May 96 (rev 1.6). Cast string constants to char *. * posix/glob/SMakefile, posix/glob/SCOPTIONS, posix/glob/Makefile.ami: New files, AmigaDOS support from Aaron Digulla. * posix/Makefile (glob.tar): Add AmigaDOS support files.
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makerules b/Makerules index 6305ad753b..1c11fb930b 100644 --- a/Makerules +++ b/Makerules @@ -552,8 +552,8 @@ ifeq (yes,$(build-shared)) install-lib-nosubdir: $(install-lib.so:%=$(libdir)/%) # Find which .so's have versions. -versioned := $(foreach so,$(install-lib.so),\ - $(patsubst %,$(so),$($(so)-version))) +versioned := $(strip $(foreach so,$(install-lib.so),\ + $(patsubst %,$(so),$($(so)-version)))) # Install all the unversioned shared libraries. $(addprefix $(libdir)/,$(filter-out $(versioned),$(install-lib.so))): \ |