mirror of git://sourceware.org/git/glibc.git
* posix/Makefile ($(objpfx)getconf.speclist): Make it empty if cross
compiling.
This commit is contained in:
parent
af2f25a163
commit
af385590b2
|
|
@ -1,3 +1,8 @@
|
||||||
|
2007-09-11 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
|
* posix/Makefile ($(objpfx)getconf.speclist): Make it empty if cross
|
||||||
|
compiling.
|
||||||
|
|
||||||
2007-09-07 Samuel Thibault <samuel.thibault@ens-lyon.org>
|
2007-09-07 Samuel Thibault <samuel.thibault@ens-lyon.org>
|
||||||
|
|
||||||
* sysdeps/mach/hurd/bits/ioctls.h (TAB3): New macro.
|
* sysdeps/mach/hurd/bits/ioctls.h (TAB3): New macro.
|
||||||
|
|
|
||||||
|
|
@ -301,6 +301,10 @@ $(inst_libexecdir)/getconf: $(inst_bindir)/getconf \
|
||||||
done < $(objpfx)getconf.speclist
|
done < $(objpfx)getconf.speclist
|
||||||
|
|
||||||
$(objpfx)getconf.speclist: $(objpfx)getconf
|
$(objpfx)getconf.speclist: $(objpfx)getconf
|
||||||
|
ifeq (no,$(cross-compiling))
|
||||||
LC_ALL=C GETCONF_DIR=/dev/null \
|
LC_ALL=C GETCONF_DIR=/dev/null \
|
||||||
$(run-program-prefix) $< _POSIX_V6_WIDTH_RESTRICTED_ENVS > $@.new
|
$(run-program-prefix) $< _POSIX_V6_WIDTH_RESTRICTED_ENVS > $@.new
|
||||||
|
else
|
||||||
|
> $@.new
|
||||||
|
endif
|
||||||
mv -f $@.new $@
|
mv -f $@.new $@
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue