Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Untracking libtool-related files from Git #210

Open
wants to merge 5 commits into
base: 3_5
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 11 additions & 14 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ autom4te.cache
/config.cache
/config/config.guess
/config/config.h.in
/config/config.h
config.log
/config.status
/config/config.sub
Expand All @@ -35,19 +36,21 @@ config.log

# https://www.gnu.org/software/libtool/

/ltmain.sh
/config/ltmain.sh
/libtool
.libs/

# http://www.gnu.org/software/texinfo

/texinfo.tex

# http://www.gnu.org/software/m4/

m4/libtool.m4
m4/ltoptions.m4
m4/ltsugar.m4
m4/ltversion.m4
m4/lt~obsolete.m4
config/libtool.m4
config/ltoptions.m4
config/ltsugar.m4
config/ltversion.m4
config/lt~obsolete.m4

# Generated Makefile
# (meta build system like autotools,
Expand Down Expand Up @@ -329,12 +332,6 @@ $RECYCLE.BIN/

# End of https://www.toptal.com/developers/gitignore/api/linux,macos,windows,vim,emacs,visualstudiocode,git,svn,autotools,c,perl

### Amanda ###
file-list
conftemp.svn
### Autogen ###
FULL_VERSION
/config/config.h
/common-src/svn-info.h
/libtool
.libs/
!/example/template.d/
conftemp.svn
Expand Down
10 changes: 0 additions & 10 deletions DEVELOPING
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,6 @@ Get the object ID of the latest commit, using 'git show', and replace the
previous object ID in Amanda's gnulib/regenerate/regenerate, so that other
developers can access the same "release" of gnulib as you did.

Updating Libtool
----------------

Libtool includes such useful files as config/config.guess.
Occasionally (probably right after a release), these files should be
updated. On a machine with libtool installed, simply run
libtoolize --force --copy

Then use 'svn status' to see what changed, test it out, and commit.

Updating Gettext
----------------

Expand Down
1 change: 1 addition & 0 deletions amandad-src/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/amandad
2 changes: 2 additions & 0 deletions amar-src/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/amar-test
/amarchiver
3 changes: 3 additions & 0 deletions amplot/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/amcat.awk
/amplot
/amplot.gp
14 changes: 14 additions & 0 deletions application-src/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/ambsdtar
/amgtar
/amlog-script
/ampgsql
/amrandom
/amraw
/amsamba
/amstar
/amsuntar
/amzfs-sendrecv
/amzfs-snapshot
/script-email
/script-fail
/teecount
4 changes: 3 additions & 1 deletion autogen
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ die() {
echo "See DEVELOPING for instructions on updating:"
echo " * gettext macros"
echo " * gnulib"
echo " * libtool files"

echo "..creating file lists"
( cd config
Expand All @@ -38,6 +37,9 @@ config/set_full_version
echo "..aclocal"
aclocal $includes || die "aclocal failed"

echo "..libtoolize"
libtoolize --force || die "libtoolize failed"

echo "...aclocal patches"
# See http://bugzilla.gnome.org/show_bug.cgi?id=418778
#
Expand Down
13 changes: 13 additions & 0 deletions client-src/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/ambackup
/amdump_client
/calcsize
/killpgrp
/noop
/patch-system
/restore
/rundump
/runtar
/selfcheck
/sendbackup
/senddiscover
/sendsize
26 changes: 26 additions & 0 deletions common-src/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/amaespipe
/amanda-security.conf
/amanda-sh-lib.sh
/ambind
/amcrypt
/amcrypt-ossl
/amcrypt-ossl-asym
/amcryptsimple
/amflock-test
/amgetconf
/amgpgcrypt
/amsemaphore-test
/amservice
/amssl
/crc32-test
/event-test
/fileheader-test
/genversion
/genversion.h
/hexencode-test
/ipc-binary-test
/make_security_file
/match-test
/quoting-test
/svn-info.h
/version.c
1 change: 1 addition & 0 deletions config/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
file-list
Loading