lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

0002-gitignore-for-autotools-files.patch (863B)


      1 From b56b0a4bdf3e11271caab744f532cb055c517b51 Mon Sep 17 00:00:00 2001
      2 From: Mathieu Parent <math.parent@gmail.com>
      3 Date: Sat, 24 Oct 2009 17:12:42 +0200
      4 Subject: [PATCH 2/7] gitignore for autotools files
      5 
      6 ---
      7  pico/.gitignore |   32 ++++++++++++++++++++++++++++++++
      8  1 files changed, 32 insertions(+), 0 deletions(-)
      9  create mode 100644 pico/.gitignore
     10 
     11 diff --git a/pico/.gitignore b/pico/.gitignore
     12 new file mode 100644
     13 index 0000000..4235569
     14 --- /dev/null
     15 +++ b/pico/.gitignore
     16 @@ -0,0 +1,32 @@
     17 +#created by aclocal
     18 +autom4te.cache
     19 +aclocal.m4
     20 +
     21 +#created by libtoolize
     22 +m4
     23 +ltmain.sh
     24 +
     25 +#created by autoconf
     26 +configure
     27 +
     28 +#created by automake
     29 +install-sh
     30 +missing
     31 +depcomp
     32 +Makefile.in
     33 +config.guess
     34 +config.sub
     35 +
     36 +#created by ./configure
     37 +.deps
     38 +Makefile
     39 +config.log
     40 +config.status
     41 +libtool
     42 +
     43 +#created by make
     44 +*.o
     45 +*.lo
     46 +.libs
     47 +libttspico.la
     48 +
     49 -- 
     50 1.7.1
     51