From: Theodore Ts'o Date: Sat, 5 Feb 2005 20:53:56 +0000 (-0500) Subject: Makefile util/gen-tarball executable after creating the file. X-Git-Tag: E2FSPROGS-1_36~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ee683a13f6f2e8ec093cb6715db3b0121d67883d;p=thirdparty%2Fe2fsprogs.git Makefile util/gen-tarball executable after creating the file. --- diff --git a/ChangeLog b/ChangeLog index e5b200e60..da99ca4ef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-02-05 Theodore Ts'o + + * configure.in: Make util/gen-tarball executable after it is created. + 2005-02-04 Theodore Ts'o * configure.in: Remove support for --enable-clear-htree; this was diff --git a/configure b/configure index 889bdcd36..d38fb2519 100644 --- a/configure +++ b/configure @@ -15536,3 +15536,5 @@ if test "$no_create" != yes; then $ac_cs_success || { (exit 1); exit 1; } fi +if test -f util/gen-tarball; then chmod +x util/gen-tarball; fi + diff --git a/configure.in b/configure.in index 2009e3fcf..1110d0387 100644 --- a/configure.in +++ b/configure.in @@ -813,3 +813,5 @@ for i in MCONFIG Makefile e2fsprogs.spec \ fi done AC_OUTPUT($outlist) +if test -f util/gen-tarball; then chmod +x util/gen-tarball; fi +