diff options
author | intrigeri <intrigeri@boum.org> | 2007-10-12 17:06:09 +0000 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2007-10-12 17:06:09 +0000 |
commit | 579ea902ba24854b3c9acb307cda7e996e8e41a3 (patch) | |
tree | 373ce0a2242050dad65b84950520c6d44a9445fc /handlers | |
parent | be75e4e6c536882c14db9a41c61585e7a9c045f6 (diff) | |
download | backupninja-579ea902ba24854b3c9acb307cda7e996e8e41a3.tar.gz backupninja-579ea902ba24854b3c9acb307cda7e996e8e41a3.tar.bz2 |
fixed autotools build, broken since r466, inhandlers/Makefile.am
Diffstat (limited to 'handlers')
-rw-r--r-- | handlers/Makefile.am | 87 | ||||
-rw-r--r-- | handlers/dup.helper.in (renamed from handlers/dup.helper) | 0 | ||||
-rw-r--r-- | handlers/dup.in (renamed from handlers/dup) | 0 | ||||
-rw-r--r-- | handlers/ldap.helper.in (renamed from handlers/ldap.helper) | 0 | ||||
-rw-r--r-- | handlers/ldap.in (renamed from handlers/ldap) | 0 | ||||
-rw-r--r-- | handlers/maildir.in (renamed from handlers/maildir) | 0 | ||||
-rw-r--r-- | handlers/makecd.helper.in (renamed from handlers/makecd.helper) | 0 | ||||
-rw-r--r-- | handlers/makecd.in (renamed from handlers/makecd) | 0 | ||||
-rw-r--r-- | handlers/mysql.helper.in (renamed from handlers/mysql.helper) | 0 | ||||
-rw-r--r-- | handlers/mysql.in (renamed from handlers/mysql) | 0 | ||||
-rw-r--r-- | handlers/pgsql.helper.in (renamed from handlers/pgsql.helper) | 0 | ||||
-rw-r--r-- | handlers/pgsql.in (renamed from handlers/pgsql) | 0 | ||||
-rw-r--r-- | handlers/rdiff.helper.in (renamed from handlers/rdiff.helper) | 0 | ||||
-rw-r--r-- | handlers/rdiff.in (renamed from handlers/rdiff) | 0 | ||||
-rw-r--r-- | handlers/rsnap.in (renamed from handlers/rsnap) | 0 | ||||
-rw-r--r-- | handlers/rub.in (renamed from handlers/rub) | 0 | ||||
-rw-r--r-- | handlers/sh.in (renamed from handlers/sh) | 0 | ||||
-rw-r--r-- | handlers/svn.in (renamed from handlers/svn) | 0 | ||||
-rw-r--r-- | handlers/sys.helper.in (renamed from handlers/sys.helper) | 0 | ||||
-rwxr-xr-x | handlers/sys.in (renamed from handlers/sys) | 0 | ||||
-rw-r--r-- | handlers/tar.helper.in (renamed from handlers/tar.helper) | 0 | ||||
-rw-r--r-- | handlers/tar.in (renamed from handlers/tar) | 0 | ||||
-rw-r--r-- | handlers/trac.in (renamed from handlers/trac) | 0 |
23 files changed, 84 insertions, 3 deletions
diff --git a/handlers/Makefile.am b/handlers/Makefile.am index b627f79..24efe89 100644 --- a/handlers/Makefile.am +++ b/handlers/Makefile.am @@ -1,7 +1,7 @@ -HANDLERS = dup dup.helper maildir mysql.helper rdiff sys makecd makecd.helper \ - rdiff.helper rsnap rub sys.helper ldap pgsql sh trac \ - ldap.helper mysql pgsql.helper svn +HANDLERS = dup dup.helper ldap ldap.helper maildir makecd \ + makecd.helper mysql mysql.helper pgsql pgsql.helper rdiff \ + rdiff.helper rsnap rub sh svn sys sys.helper trac EXTRA_DIST = Makefile.am $(HANDLERS) @@ -11,3 +11,84 @@ edit = sed \ -e "s,@SED\@,$(SED),g" dist_pkgdata_DATA = $(HANDLERS) + +dup: $(srcdir)/dup.in + rm -f dup + $(edit) $(srcdir)/dup.in > dup + +dup.helper: $(srcdir)/dup.helper.in + rm -f dup.helper + $(edit) $(srcdir)/dup.helper.in > dup.helper + +ldap: $(srcdir)/ldap.in + rm -f ldap + $(edit) $(srcdir)/ldap.in > ldap + +ldap.helper: $(srcdir)/ldap.helper.in + rm -f ldap.helper + $(edit) $(srcdir)/ldap.helper.in > ldap.helper + +maildir: $(srcdir)/maildir.in + rm -f maildir + $(edit) $(srcdir)/maildir.in > maildir + +makecd: $(srcdir)/makecd.in + rm -f makecd + $(edit) $(srcdir)/makecd.in > makecd + +makecd.helper: $(srcdir)/makecd.helper.in + rm -f makecd.helper + $(edit) $(srcdir)/makecd.helper.in > makecd.helper + +mysql: $(srcdir)/mysql.in + rm -f mysql + $(edit) $(srcdir)/mysql.in > mysql + +mysql.helper: $(srcdir)/mysql.helper.in + rm -f mysql.helper + $(edit) $(srcdir)/mysql.helper.in > mysql.helper + +pgsql: $(srcdir)/pgsql.in + rm -f pgsql + $(edit) $(srcdir)/pgsql.in > pgsql + +pgsql.helper: $(srcdir)/pgsql.helper.in + rm -f pgsql.helper + $(edit) $(srcdir)/pgsql.helper.in > pgsql.helper + +rdiff: $(srcdir)/rdiff.in + rm -f rdiff + $(edit) $(srcdir)/rdiff.in > rdiff + +rdiff.helper: $(srcdir)/rdiff.helper.in + rm -f rdiff.helper + $(edit) $(srcdir)/rdiff.helper.in > rdiff.helper + +rsnap: $(srcdir)/rsnap.in + rm -f rsnap + $(edit) $(srcdir)/rsnap.in > rsnap + +rub: $(srcdir)/rub.in + rm -f rub + $(edit) $(srcdir)/rub.in > rub + +sh: $(srcdir)/sh.in + rm -f sh + $(edit) $(srcdir)/sh.in > sh + +svn: $(srcdir)/svn.in + rm -f svn + $(edit) $(srcdir)/svn.in > svn + +sys: $(srcdir)/sys.in + rm -f sys + $(edit) $(srcdir)/sys.in > sys + +sys.helper: $(srcdir)/sys.helper.in + rm -f sys.helper + $(edit) $(srcdir)/sys.helper.in > sys.helper + +trac: $(srcdir)/trac.in + rm -f trac + $(edit) $(srcdir)/trac.in > trac + diff --git a/handlers/dup.helper b/handlers/dup.helper.in index eee0256..eee0256 100644 --- a/handlers/dup.helper +++ b/handlers/dup.helper.in diff --git a/handlers/dup b/handlers/dup.in index edb43ac..edb43ac 100644 --- a/handlers/dup +++ b/handlers/dup.in diff --git a/handlers/ldap.helper b/handlers/ldap.helper.in index 697c720..697c720 100644 --- a/handlers/ldap.helper +++ b/handlers/ldap.helper.in diff --git a/handlers/ldap b/handlers/ldap.in index 5f9040a..5f9040a 100644 --- a/handlers/ldap +++ b/handlers/ldap.in diff --git a/handlers/maildir b/handlers/maildir.in index 4b98deb..4b98deb 100644 --- a/handlers/maildir +++ b/handlers/maildir.in diff --git a/handlers/makecd.helper b/handlers/makecd.helper.in index f83b541..f83b541 100644 --- a/handlers/makecd.helper +++ b/handlers/makecd.helper.in diff --git a/handlers/makecd b/handlers/makecd.in index cdfa6b1..cdfa6b1 100644 --- a/handlers/makecd +++ b/handlers/makecd.in diff --git a/handlers/mysql.helper b/handlers/mysql.helper.in index 9622d41..9622d41 100644 --- a/handlers/mysql.helper +++ b/handlers/mysql.helper.in diff --git a/handlers/mysql b/handlers/mysql.in index de4e4c3..de4e4c3 100644 --- a/handlers/mysql +++ b/handlers/mysql.in diff --git a/handlers/pgsql.helper b/handlers/pgsql.helper.in index 8024616..8024616 100644 --- a/handlers/pgsql.helper +++ b/handlers/pgsql.helper.in diff --git a/handlers/pgsql b/handlers/pgsql.in index 23e2c2b..23e2c2b 100644 --- a/handlers/pgsql +++ b/handlers/pgsql.in diff --git a/handlers/rdiff.helper b/handlers/rdiff.helper.in index 42bcb1b..42bcb1b 100644 --- a/handlers/rdiff.helper +++ b/handlers/rdiff.helper.in diff --git a/handlers/rdiff b/handlers/rdiff.in index 46cae49..46cae49 100644 --- a/handlers/rdiff +++ b/handlers/rdiff.in diff --git a/handlers/rsnap b/handlers/rsnap.in index 017a456..017a456 100644 --- a/handlers/rsnap +++ b/handlers/rsnap.in diff --git a/handlers/rub b/handlers/rub.in index bdd6e99..bdd6e99 100644 --- a/handlers/rub +++ b/handlers/rub.in diff --git a/handlers/sh b/handlers/sh.in index f9f1926..f9f1926 100644 --- a/handlers/sh +++ b/handlers/sh.in diff --git a/handlers/svn b/handlers/svn.in index 377d71c..377d71c 100644 --- a/handlers/svn +++ b/handlers/svn.in diff --git a/handlers/sys.helper b/handlers/sys.helper.in index 6451ae2..6451ae2 100644 --- a/handlers/sys.helper +++ b/handlers/sys.helper.in diff --git a/handlers/sys b/handlers/sys.in index 2e181c8..2e181c8 100755 --- a/handlers/sys +++ b/handlers/sys.in diff --git a/handlers/tar.helper b/handlers/tar.helper.in index cc9a89b..cc9a89b 100644 --- a/handlers/tar.helper +++ b/handlers/tar.helper.in diff --git a/handlers/tar b/handlers/tar.in index 7f0d147..7f0d147 100644 --- a/handlers/tar +++ b/handlers/tar.in diff --git a/handlers/trac b/handlers/trac.in index 0460c9f..0460c9f 100644 --- a/handlers/trac +++ b/handlers/trac.in |