[rtems-buildsys commit] Regenerate.
Ralf Corsepius
ralf at rtems.org
Thu Dec 13 18:02:20 UTC 2012
Module: rtems-buildsys
Branch: master
Commit: b7c9d27ddcb81513ffce2925fc8a00b312dd6491
Changeset: http://git.rtems.org/rtems-buildsys/commit/?id=b7c9d27ddcb81513ffce2925fc8a00b312dd6491
Author: Ralf Corsépius <ralf.corsepius at rtems.org>
Date: Wed Dec 5 09:11:37 2012 +0100
Regenerate.
---
rtems-sbuild/Makefile.in | 120 ++++++++++++++++++++++++++++++++++------------
rtems-sbuild/configure | 20 ++++----
2 files changed, 99 insertions(+), 41 deletions(-)
diff --git a/rtems-sbuild/Makefile.in b/rtems-sbuild/Makefile.in
index f76a36f..b21829a 100644
--- a/rtems-sbuild/Makefile.in
+++ b/rtems-sbuild/Makefile.in
@@ -15,6 +15,7 @@
@SET_MAKE@
+
VPATH = @srcdir@
am__make_dryrun = \
{ \
@@ -52,7 +53,7 @@ POST_UNINSTALL = :
subdir = .
DIST_COMMON = $(am__configure_deps) $(dist_keyrings_DATA) \
$(dist_schrootchroot_d_DATA) $(dist_schrootsetup_d_SCRIPTS) \
- $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
+ $(noinst_HEADERS) $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
$(srcdir)/rtems-sbuild.spec.in $(top_srcdir)/configure COPYING \
install-sh missing
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
@@ -102,6 +103,11 @@ am__can_run_installinfo = \
*) (install-info --version) >/dev/null 2>&1;; \
esac
DATA = $(dist_keyrings_DATA) $(dist_schrootchroot_d_DATA)
+HEADERS = $(noinst_HEADERS)
+ETAGS = etags
+CTAGS = ctags
+CSCOPE = cscope
+AM_RECURSIVE_TARGETS = cscope
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
@@ -193,32 +199,14 @@ target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
-EXTRA_DIST = rtems-sbuild.spec
+EXTRA_DIST =
CLEANFILES =
schrootconfdir = ${sysconfdir}/schroot
schrootchroot_ddir = ${schrootconfdir}/chroot.d
-
-# Debian stable
-
-# Ubuntu
-
-# 10.04 LTS - EOL 2013-04
-
-# 10.10 - EOL 2012-04-10
-
-# 11.04 - EOL 2012-10-28
-
-# 11.10 - EOL 2013-04
-
-# 12.04 LTS - EOL 2017-04
-
-# 12.10 - EOL 2014-04
dist_schrootchroot_d_DATA = etc/schroot/chroot.d/squeeze-amd64-sbuild \
etc/schroot/chroot.d/squeeze-i386-sbuild \
etc/schroot/chroot.d/lucid-amd64-sbuild \
etc/schroot/chroot.d/lucid-i386-sbuild \
- etc/schroot/chroot.d/maverick-amd64-sbuild \
- etc/schroot/chroot.d/maverick-i386-sbuild \
etc/schroot/chroot.d/natty-amd64-sbuild \
etc/schroot/chroot.d/natty-i386-sbuild \
etc/schroot/chroot.d/oneiric-amd64-sbuild \
@@ -233,6 +221,7 @@ keyringsdir = ${datadir}/keyrings
dist_keyrings_DATA = keyrings/debian-archive-keyring.gpg \
keyrings/debian-archive-removed-keys.gpg \
keyrings/ubuntu-archive-keyring.gpg
+noinst_HEADERS = rtems-sbuild.spec
all: all-am
.SUFFIXES:
@@ -349,14 +338,82 @@ uninstall-dist_schrootchroot_dDATA:
@list='$(dist_schrootchroot_d_DATA)'; test -n "$(schrootchroot_ddir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(schrootchroot_ddir)'; $(am__uninstall_files_from_dir)
+
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | \
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
+ mkid -fID $$unique
tags: TAGS
-TAGS:
+TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
+ $(TAGS_FILES) $(LISP)
+ set x; \
+ here=`pwd`; \
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | \
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
+ shift; \
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
+ test -n "$$unique" || unique=$$empty_fix; \
+ if test $$# -gt 0; then \
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+ "$$@" $$unique; \
+ else \
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+ $$unique; \
+ fi; \
+ fi
ctags: CTAGS
-CTAGS:
-
-cscope cscopelist:
+CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
+ $(TAGS_FILES) $(LISP)
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | \
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
+ test -z "$(CTAGS_ARGS)$$unique" \
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+ $$unique
+
+GTAGS:
+ here=`$(am__cd) $(top_builddir) && pwd` \
+ && $(am__cd) $(top_srcdir) \
+ && gtags -i $(GTAGS_ARGS) "$$here"
+
+cscope: cscope.files
+ test ! -s cscope.files \
+ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
+
+clean-cscope:
+ -rm -f cscope.files
+
+cscope.files: clean-cscope cscopelist
+
+cscopelist: $(HEADERS) $(SOURCES) $(LISP)
+ list='$(SOURCES) $(HEADERS) $(LISP)'; \
+ case "$(srcdir)" in \
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
+ *) sdir=$(subdir)/$(srcdir) ;; \
+ esac; \
+ for i in $$list; do \
+ if test -f "$$i"; then \
+ echo "$(subdir)/$$i"; \
+ else \
+ echo "$$sdir/$$i"; \
+ fi; \
+ done >> $(top_builddir)/cscope.files
+distclean-tags:
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+ -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
distdir: $(DISTFILES)
$(am__remove_distdir)
@@ -515,7 +572,7 @@ distcleancheck: distclean
exit 1; } >&2
check-am: all-am
check: check-am
-all-am: Makefile $(SCRIPTS) $(DATA)
+all-am: Makefile $(SCRIPTS) $(DATA) $(HEADERS)
installdirs:
for dir in "$(DESTDIR)$(schrootsetup_ddir)" "$(DESTDIR)$(keyringsdir)" "$(DESTDIR)$(schrootchroot_ddir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
@@ -558,7 +615,7 @@ clean-am: clean-generic mostlyclean-am
distclean: distclean-am
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -f Makefile
-distclean-am: clean-am distclean-generic
+distclean-am: clean-am distclean-generic distclean-tags
dvi: dvi-am
@@ -626,12 +683,13 @@ uninstall-am: uninstall-dist_keyringsDATA \
.MAKE: install-am install-strip
-.PHONY: all all-am am--refresh check check-am clean clean-generic dist \
+.PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \
+ clean-cscope clean-generic cscope cscopelist ctags dist \
dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
dist-xz dist-zip distcheck distclean distclean-generic \
- distcleancheck distdir distuninstallcheck dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dist_keyringsDATA \
+ distclean-tags distcleancheck distdir distuninstallcheck dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dist_keyringsDATA \
install-dist_schrootchroot_dDATA \
install-dist_schrootsetup_dSCRIPTS install-dvi install-dvi-am \
install-exec install-exec-am install-html install-html-am \
@@ -639,7 +697,7 @@ uninstall-am: uninstall-dist_keyringsDATA \
install-pdf-am install-ps install-ps-am install-strip \
installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
- pdf-am ps ps-am uninstall uninstall-am \
+ pdf-am ps ps-am tags uninstall uninstall-am \
uninstall-dist_keyringsDATA uninstall-dist_schrootchroot_dDATA \
uninstall-dist_schrootsetup_dSCRIPTS
diff --git a/rtems-sbuild/configure b/rtems-sbuild/configure
index bc2a0d4..f87e88f 100755
--- a/rtems-sbuild/configure
+++ b/rtems-sbuild/configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for rtems-sbuild 0.4.
+# Generated by GNU Autoconf 2.69 for rtems-sbuild 0.20121205.0.
#
# Report bugs to <ralf.corsepius at rtems.org>.
#
@@ -579,8 +579,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='rtems-sbuild'
PACKAGE_TARNAME='rtems-sbuild'
-PACKAGE_VERSION='0.4'
-PACKAGE_STRING='rtems-sbuild 0.4'
+PACKAGE_VERSION='0.20121205.0'
+PACKAGE_STRING='rtems-sbuild 0.20121205.0'
PACKAGE_BUGREPORT='ralf.corsepius at rtems.org'
PACKAGE_URL=''
@@ -1196,7 +1196,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures rtems-sbuild 0.4 to adapt to many kinds of systems.
+\`configure' configures rtems-sbuild 0.20121205.0 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1262,7 +1262,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of rtems-sbuild 0.4:";;
+ short | recursive ) echo "Configuration of rtems-sbuild 0.20121205.0:";;
esac
cat <<\_ACEOF
@@ -1329,7 +1329,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-rtems-sbuild configure 0.4
+rtems-sbuild configure 0.20121205.0
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1346,7 +1346,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by rtems-sbuild $as_me 0.4, which was
+It was created by rtems-sbuild $as_me 0.20121205.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -2171,7 +2171,7 @@ fi
# Define the identity of the package.
PACKAGE='rtems-sbuild'
- VERSION='0.4'
+ VERSION='0.20121205.0'
cat >>confdefs.h <<_ACEOF
@@ -2864,7 +2864,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by rtems-sbuild $as_me 0.4, which was
+This file was extended by rtems-sbuild $as_me 0.20121205.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -2917,7 +2917,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-rtems-sbuild config.status 0.4
+rtems-sbuild config.status 0.20121205.0
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
More information about the vc
mailing list