2003-07-20 22:29:38 +03:00
|
|
|
%: %.in Makefile
|
|
|
|
sed \
|
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" \
|
|
|
|
-e "s^@sysconfdir\@^$(sysconfdir)^g" \
|
|
|
|
-e "s^@localstatedir\@^$(localstatedir)^g" \
|
|
|
|
-e "s^@datadir\@^$(datadir)^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" \
|
2006-02-01 18:48:49 +02:00
|
|
|
-e "s^@bzip2\@^$(bzip2_bin)/bzip2^g" \
|
|
|
|
-e "s^@bunzip2\@^$(bzip2_bin)/bunzip2^g" \
|
2006-04-25 13:45:53 +03:00
|
|
|
-e "s^@bzip2_bin_test\@^$(bzip2_bin_test)^g" \
|
2004-03-15 17:23:53 +02:00
|
|
|
-e "s^@perl\@^$(perl)^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" \
|
2008-05-07 17:18:28 +03:00
|
|
|
-e "s^@gzip\@^$(gzip)^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" \
|
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
|