diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-09-20 10:42:14 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-09-20 10:42:14 (EDT) |
commit | 6fd9330823ce9b52475c3e7329ff1fee81ae8c8d (patch) | |
tree | 830e27f735f9a5413f85da281435337823d6b44a /build | |
parent | bff1bcc740a412573ed874f8f61d2987c8eaa4f0 (diff) |
build: Expand shell params, not makefile macros
Diffstat (limited to 'build')
-rwxr-xr-x | build | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -16,9 +16,9 @@ script = \ s|@OS@|$(os)|; \ s|@VERSION@|$(version)|; \ s|@DISTRIBUTION_ID@|$(dist_id)|; \ - s|@DISTRIBUTION_ANSI_COLOR@|$(dist_ansi_color)|; \ - s|@DISTRIBUTION_HOME_URL@|$(dist_home_url)|; \ - s|@DISTRIBUTION_BUG_URL@|$(dist_bug_url)|; + s|@DISTRIBUTION_ANSI_COLOR@|$${dist_ansi_color}|; \ + s|@DISTRIBUTION_HOME_URL@|$${dist_home_url}|; \ + s|@DISTRIBUTION_BUG_URL@|$${dist_bug_url}|; build: |