diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-03-19 16:44:29 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-03-19 16:44:29 +0100 |
commit | d7ca106218fd8f9864c67c2f8335dd7b7c851865 (patch) | |
tree | 2977aa949de77374164612765ff851a4d218fa5a | |
parent | f9ab17f900ccce345539a0d7a0c09363d414c7dc (diff) |
Give the Debian package name for the non-multilib libc.a
* Makefile.am (clib-routines.o): Mention the Debian libc6-dev:i386 package.
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 1afddab..2c39451 100644 --- a/Makefile.am +++ b/Makefile.am @@ -173,8 +173,8 @@ clib-routines.o: gnumach-undef gnumach-undef-bad then cat gnumach-undef-bad; exit 2; else true; fi $(AM_V_CCLD) $(CCLD) -nostdlib -nostartfiles -r -static \ -o $@ `sed 's/^/-Wl,-u,/' < $<` -x c /dev/null -lc -lgcc - $(AM_V_at) if nm $@ | grep __init_cpu_features; \ - then echo Please install a 32bit libc without multiarch support. ; \ + @if nm $@ | grep __init_cpu_features; \ + then echo "Please install a 32bit libc without multiarch support (on Debian systems, the libc6-dev:i386 package containing /usr/lib/i386-linux-gnu/libc.a)". ; \ false ; fi gnumach_LINK = $(LD) $(LINKFLAGS) $(gnumach_LINKFLAGS) -o $@ |