Skip to content

Commit

Permalink
Touch configure after aclocal.m4
Browse files Browse the repository at this point in the history
Fixes #502.
  • Loading branch information
l2dy authored and vslavik committed May 14, 2020
1 parent b3a534d commit ee6b1f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions deps/build.ninja
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,13 @@ rule gettext_build
'note: ⋯ $
touch `find $
. -name $
configure`' $
aclocal.m4`' $
&& $
tmp=`mktemp` $
&& touch $
`find . $
-name $
configure` $
aclocal.m4` $
>$$tmp 2>&1 $
|| (cat $
$$tmp ; $
Expand All @@ -139,13 +139,13 @@ rule gettext_build
'note: ⋯ $
touch `find $
. -name $
aclocal.m4`' $
configure`' $
&& $
tmp=`mktemp` $
&& touch $
`find . $
-name $
aclocal.m4` $
configure` $
>$$tmp 2>&1 $
|| (cat $
$$tmp ; $
Expand Down
2 changes: 1 addition & 1 deletion deps/generate_build_ninja.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ def gen_configure(n, prj, tarball=None, patches=[], srcdir=None, configure='conf
],
build_commands=[
# Prevent automake regeneration:
'touch `find . -name configure`',
'touch `find . -name aclocal.m4`',
'touch `find . -name configure`',
'touch `find . -name config.h.in`',
'touch `find . -name Makefile.in`',
'touch `find . -name *.1`',
Expand Down

0 comments on commit ee6b1f6

Please sign in to comment.