From: Sergey Matveev Date: Wed, 25 Jun 2025 12:08:34 +0000 (+0300) Subject: Depend and autogenerate .c.in X-Git-Tag: v0.0.0~16 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=3556407d630a818a1cc6d73d62818e6f8f31584d57b25c71b6b27fcf58575587;p=keks.git Depend and autogenerate .c.in --- diff --git a/c/lib/h-extract.pl b/c/lib/h-extract.pl index 7cb1d44..f67960b 100755 --- a/c/lib/h-extract.pl +++ b/c/lib/h-extract.pl @@ -8,6 +8,6 @@ use File::Basename; map { $inc{basename($_)} = 1 } @ARGV; while (<>) { - /^#include "(.+)"$/ and ($1 !~ /\.in$/) and $inc{$1} = 1; + /^#include "(.+)"$/ and $inc{$1} = 1; }; print join " ", sort keys %inc;