2003-07-20 22:29:38 +03:00
|
|
|
%: %.in Makefile
|
|
|
|
sed \
|
2012-01-11 18:58:49 +02:00
|
|
|
-e "s^@abs_top_srcdir\@^$(abs_top_srcdir)^g" \
|
|
|
|
-e "s^@abs_top_builddir\@^$(abs_top_builddir)^g" \
|
2004-05-04 20:04:17 +03:00
|
|
|
-e "s^@extra1\@^$(extra1)^g" \
|
2003-11-22 20:45:56 +02:00
|
|
|
-e "s^@prefix\@^$(prefix)^g" \
|
|
|
|
-e "s^@bindir\@^$(bindir)^g" \
|
2012-03-19 02:20:02 +02:00
|
|
|
-e "s^@datadir\@^$(datadir)^g" \
|
2003-11-22 20:45:56 +02:00
|
|
|
-e "s^@sysconfdir\@^$(sysconfdir)^g" \
|
2013-01-03 00:52:15 +02:00
|
|
|
-e "s^@profiledir\@^$(profiledir)^g" \
|
2003-11-22 20:45:56 +02:00
|
|
|
-e "s^@localstatedir\@^$(localstatedir)^g" \
|
|
|
|
-e "s^@datadir\@^$(datadir)^g" \
|
2011-10-11 00:11:08 +03:00
|
|
|
-e "s^@libdir\@^$(libdir)^g" \
|
2003-12-24 00:15:12 +02:00
|
|
|
-e "s^@libexecdir\@^$(libexecdir)^g" \
|
2004-02-20 13:32:30 +02:00
|
|
|
-e "s^@storedir\@^$(storedir)^g" \
|
2003-12-01 16:36:50 +02:00
|
|
|
-e "s^@system\@^$(system)^g" \
|
2008-04-10 12:54:23 +03:00
|
|
|
-e "s^@shell\@^$(bash)^g" \
|
2004-04-06 11:18:51 +03:00
|
|
|
-e "s^@curl\@^$(curl)^g" \
|
2012-03-19 00:54:57 +02:00
|
|
|
-e "s^@bzip2\@^$(bzip2)^g" \
|
2012-06-29 21:26:31 +03:00
|
|
|
-e "s^@xz\@^$(xz)^g" \
|
2004-03-15 17:23:53 +02:00
|
|
|
-e "s^@perl\@^$(perl)^g" \
|
2011-04-11 13:13:53 +03:00
|
|
|
-e "s^@perlFlags\@^$(perlFlags)^g" \
|
2005-03-15 14:03:15 +02:00
|
|
|
-e "s^@coreutils\@^$(coreutils)^g" \
|
2010-03-05 20:26:47 +02:00
|
|
|
-e "s^@sed\@^$(sed)^g" \
|
2005-03-15 14:03:15 +02:00
|
|
|
-e "s^@tar\@^$(tar)^g" \
|
2012-08-01 23:42:51 +03:00
|
|
|
-e "s^@tarFlags\@^$(tarFlags)^g" \
|
2008-05-07 17:18:28 +03:00
|
|
|
-e "s^@gzip\@^$(gzip)^g" \
|
2012-04-13 15:41:33 +03:00
|
|
|
-e "s^@pv\@^$(pv)^g" \
|
2007-05-02 02:16:38 +03:00
|
|
|
-e "s^@tr\@^$(tr)^g" \
|
2006-03-01 14:15:33 +02:00
|
|
|
-e "s^@dot\@^$(dot)^g" \
|
2006-03-01 15:25:08 +02:00
|
|
|
-e "s^@xmllint\@^$(xmllint)^g" \
|
|
|
|
-e "s^@xmlflags\@^$(xmlflags)^g" \
|
|
|
|
-e "s^@xsltproc\@^$(xsltproc)^g" \
|
2010-02-24 13:06:17 +02:00
|
|
|
-e "s^@sqlite_bin\@^$(sqlite_bin)^g" \
|
2004-01-02 18:04:53 +02:00
|
|
|
-e "s^@version\@^$(VERSION)^g" \
|
2012-05-11 02:03:23 +03:00
|
|
|
-e "s^@perlbindings\@^$(perlbindings)^g" \
|
2010-10-04 18:50:08 +03:00
|
|
|
-e "s^@testPath\@^$(coreutils):$$(dirname $$(type -p expr))^g" \
|
2003-07-20 22:29:38 +03:00
|
|
|
< $< > $@ || rm $@
|
2004-01-02 18:04:53 +02:00
|
|
|
if test -x $<; then chmod +x $@; fi
|