diff options
author | Mike Frysinger <vapier@gentoo.org> | 2013-01-26 14:04:19 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2013-01-26 14:04:19 -0500 |
commit | 3bbb08532139c81e23734c1724ea812d8ed543f9 (patch) | |
tree | 2f843e0ba390788783bdf0d044f3419d6c0d49c7 /Makefile.in | |
parent | bb701610aaa645644bfa046b30711fc5acb7c6c2 (diff) |
buildsys: gen_bits_syscall_h: remove top_builddir references
This script hasn't used this var in a while (it writes to stdout), so
drop all mention/usage of it.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index f503928a4..35d611993 100644 --- a/Makefile.in +++ b/Makefile.in @@ -175,7 +175,7 @@ $(top_builddir)include/bits/sysnum.h: $(top_srcdir)extra/scripts/gen_bits_syscal $(Q)set -e; \ tmp=`mktemp $(top_builddir)include/bits/sysnum.h.XXXXXX 2>/dev/null || true`; \ [ -z "$$tmp" ] && tmp='$(top_builddir)include/bits/sysnum.h.new'; \ - KERNEL_HEADERS="${KERNEL_HEADERS}" top_builddir="$(top_builddir)" CC="$(CC) $(CPU_CFLAGS)" $(SHELL) $< > $$tmp; \ + KERNEL_HEADERS="${KERNEL_HEADERS}" CC="$(CC) $(CPU_CFLAGS)" $(SHELL) $< > $$tmp; \ if cmp $(top_builddir)include/bits/sysnum.h $$tmp >/dev/null 2>&1; then \ $(RM) $$tmp; \ else \ |