Changeset 74677 in webkit


Ignore:
Timestamp:
Dec 26, 2010 11:24:31 PM (13 years ago)
Author:
abarth@webkit.org
Message:

2010-12-26 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

[Meta] Move source code into Sources
https://bugs.webkit.org/show_bug.cgi?id=51606

  • PrettyPatch/PrettyPatch.rb:
    • Remove reference to non-existant autotools directory.

2010-12-26 Adam Barth <abarth@webkit.org>

Reviewed by Eric Siedel.

[Meta] Move source code into Sources
https://bugs.webkit.org/show_bug.cgi?id=51606

  • .gitignore:
  • GNUmakefile.am:
  • Sources/autotools: Copied from autotools.
  • autogen.sh:
  • autotools: Removed.
  • autotools/acinclude.m4: Removed.
  • autotools/dolt.m4: Removed.
  • autotools/gsettings.m4: Removed.
  • autotools/symbols.filter: Removed.
  • autotools/webkit.m4: Removed.
  • configure.ac:
Location:
trunk
Files:
7 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/.gitignore

    r74363 r74677  
    7373/aclocal.m4
    7474/autom4te.cache
    75 /autotools/compile
    76 /autotools/config.guess
    77 /autotools/config.sub
    78 /autotools/depcomp
    79 /autotools/gtk-doc.m4
    80 /autotools/install-sh
    81 /autotools/libtool.m4
    82 /autotools/ltmain.sh
    83 /autotools/ltoptions.m4
    84 /autotools/ltsugar.m4
    85 /autotools/ltversion.m4
    86 /autotools/lt~obsolete.m4
    87 /autotools/missing
     75/Sources/autotools/compile
     76/Sources/autotools/config.guess
     77/Sources/autotools/config.sub
     78/Sources/autotools/depcomp
     79/Sources/autotools/gtk-doc.m4
     80/Sources/autotools/install-sh
     81/Sources/autotools/libtool.m4
     82/Sources/autotools/ltmain.sh
     83/Sources/autotools/ltoptions.m4
     84/Sources/autotools/ltsugar.m4
     85/Sources/autotools/ltversion.m4
     86/Sources/autotools/lt~obsolete.m4
     87/Sources/autotools/missing
    8888/autotoolsconfig.h.in
    8989/configure
  • trunk/ChangeLog

    r74676 r74677  
     12010-12-26  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Siedel.
     4
     5        [Meta] Move source code into Sources
     6        https://bugs.webkit.org/show_bug.cgi?id=51606
     7
     8        * .gitignore:
     9        * GNUmakefile.am:
     10        * Sources/autotools: Copied from autotools.
     11        * autogen.sh:
     12        * autotools: Removed.
     13        * autotools/acinclude.m4: Removed.
     14        * autotools/dolt.m4: Removed.
     15        * autotools/gsettings.m4: Removed.
     16        * autotools/symbols.filter: Removed.
     17        * autotools/webkit.m4: Removed.
     18        * configure.ac:
     19
    1202010-12-26  Adam Barth  <abarth@webkit.org>
    221
  • trunk/GNUmakefile.am

    r74301 r74677  
    103103
    104104if OS_GNU
    105 version_script = -Wl,--version-script,$(srcdir)/autotools/symbols.filter
     105version_script = -Wl,--version-script,$(srcdir)/Sources/autotools/symbols.filter
    106106endif
    107107
     
    197197
    198198EXTRA_DIST += \
    199         $(srcdir)/autotools/symbols.filter \
     199        $(srcdir)/Sources/autotools/symbols.filter \
    200200        $(srcdir)/gtk-doc.make \
    201201        $(srcdir)/WebKit/LICENSE
     
    228228        $(builddir)/doltlibtool \
    229229        $(srcdir)/aconfig.h.in \
    230         $(srcdir)/autotools/config.* \
    231         $(srcdir)/autotools/compile \
    232         $(srcdir)/autotools/depcomp \
    233         $(srcdir)/autotools/install-sh \
    234         $(srcdir)/autotools/missing \
     230        $(srcdir)/Sources/autotools/config.* \
     231        $(srcdir)/Sources/autotools/compile \
     232        $(srcdir)/Sources/autotools/depcomp \
     233        $(srcdir)/Sources/autotools/install-sh \
     234        $(srcdir)/Sources/autotools/missing \
    235235        $(srcdir)/configure \
    236236        $(srcdir)/GNUmakefile.in \
  • trunk/Websites/bugs.webkit.org/ChangeLog

    r74676 r74677  
     12010-12-26  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [Meta] Move source code into Sources
     6        https://bugs.webkit.org/show_bug.cgi?id=51606
     7
     8        * PrettyPatch/PrettyPatch.rb:
     9          - Remove reference to non-existant autotools directory.
     10
    1112010-12-26  Adam Barth  <abarth@webkit.org>
    212
  • trunk/Websites/bugs.webkit.org/PrettyPatch/PrettyPatch.rb

    r74676 r74677  
    7777        WebKitLibraries
    7878        Websites
    79         autotools
    8079    ]
    8180
  • trunk/autogen.sh

    r65328 r74677  
    1111GTKDOCIZE_FLAGS="--copy"
    1212LIBTOOLIZE_FLAGS="--force --automake"
    13 ACLOCAL_FLAGS="-I autotools $ACLOCAL_FLAGS"
     13ACLOCAL_FLAGS="-I Sources/autotools $ACLOCAL_FLAGS"
    1414AUTOMAKE_FLAGS="--foreign --add-missing"
    1515
  • trunk/configure.ac

    r74505 r74677  
    1414AC_INIT([WebKit],[webkit_major_version.webkit_minor_version.webkit_micro_version],[http://bugs.webkit.org/])
    1515
    16 AC_CONFIG_MACRO_DIR([autotools])
    17 AC_CONFIG_AUX_DIR([autotools])
    18 AC_SUBST(ACLOCAL_AMFLAGS, "-I autotools")
     16AC_CONFIG_MACRO_DIR([Sources/autotools])
     17AC_CONFIG_AUX_DIR([Sources/autotools])
     18AC_SUBST(ACLOCAL_AMFLAGS, "-I Sources/autotools")
    1919
    2020AC_CONFIG_HEADERS([autotoolsconfig.h])
Note: See TracChangeset for help on using the changeset viewer.