diff options
author | P. J. McDermott <pjm@nac.net> | 2012-03-21 02:24:24 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-03-21 02:24:24 (EDT) |
commit | 9f73d6a876b548a4c3d27f8d6e56efa4d411c0ef (patch) | |
tree | 7efdc6532133664a749c5d89a1b38074f67fd093 | |
parent | bb86126c7d90cd63a776db97d39592a081f06162 (diff) |
Add '@@PACKAGE@@' and '@@VERSION@@' build macros.
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index eb6d8de..f5c9771 100644 --- a/Makefile.in +++ b/Makefile.in @@ -48,7 +48,9 @@ all: sedscript sedscript: @printf 'Writing sed script...\n' - @echo 's&@@BINDIR@@&$(BINDIR)&' > sedscript + @echo 's&@@PACKAGE@@&$(PACKAGE)&' > sedscript + @echo 's&@@VERSION@@&$(VERSION)&' >> sedscript + @echo 's&@@BINDIR@@&$(BINDIR)&' >> sedscript @echo 's&@@DATADIR@@&$(DATADIR)&' >> sedscript @echo 's&@@LIBDIR@@&$(LIBDIR)&' >> sedscript |