[hipl-commit] [trunk] Rev 4433: autobuild: Do not filter out hipdns* template files in the tarball check.

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Wed, 28 Apr 2010 19:17:49 +0300

Committer: Diego Biurrun <diego@xxxxxxxxxx>
Date: 28/04/2010 at 19:17:49
Revision: 4433
Revision-id: diego@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: trunk

Log:
  autobuild: Do not filter out hipdns* template files in the tarball check.

Modified:
  M  Makefile.am
  M  tools/hipl_autobuild.sh

=== modified file 'Makefile.am'
--- Makefile.am 2010-04-28 16:11:09 +0000
+++ Makefile.am 2010-04-28 16:16:26 +0000
@@ -11,7 +11,7 @@
 EXTRA_DIST += $(wildcard $(addprefix $(srcdir)/lib/dht/,*.txt))
 EXTRA_DIST += $(wildcard $(addprefix $(srcdir)/lib/ipsec/,*.3))
 EXTRA_DIST += $(wildcard $(addprefix $(srcdir)/test/,*.cgi *.pl *.py *.sh))
-EXTRA_DIST += $(wildcard $(addprefix $(srcdir)/tools/,*.cfg *.pl *.py *.sh 
*.in))
+EXTRA_DIST += $(wildcard $(addprefix $(srcdir)/tools/,*.cfg *.pl *.py *.sh))
 EXTRA_DIST += m4 # required for CentOS "make bin" target
 EXTRA_DIST += $(HIPL_HEADER_LIST)
 

=== modified file 'tools/hipl_autobuild.sh'
--- tools/hipl_autobuild.sh     2010-04-09 16:29:18 +0000
+++ tools/hipl_autobuild.sh     2010-04-28 16:16:26 +0000
@@ -80,7 +80,7 @@
     ./configure && make dist
     tar -tzf hipl-*.tar.gz |
         sed -e 1d -e 's:hipl-main/::' -e 's:/$::' -e '/file_list_checkout/d' 
-e '/version.h/d' |
-        sed -e '/tools\/hipdnskeyparse/d' -e '/tools\/hipdnsproxy/d' |
+        sed -e '/tools\/hipdnskeyparse$/d' -e '/tools\/hipdnsproxy$/d' |
         sort > file_list_tarball
     run_program diff -u file_list_checkout file_list_tarball
 }

Other related posts:

  • » [hipl-commit] [trunk] Rev 4433: autobuild: Do not filter out hipdns* template files in the tarball check. - Diego Biurrun