diff options
author | Carl Fredrik Hammar <hammy.lite@gmail.com> | 2010-05-26 19:31:37 +0200 |
---|---|---|
committer | Carl Fredrik Hammar <hammy.lite@gmail.com> | 2010-05-26 19:31:37 +0200 |
commit | 592317250d5b75ed4cf225ac9387871329b81755 (patch) | |
tree | 1c8c89e4c69d89e1ea323f263da4bca458264ae4 | |
parent | 7913beaef3e6a2c4f7f315a8db7a31dbe1f713e0 (diff) |
Fix --version in scripts
* Makeconf (%): Don't depend on removed files. Remove excess backslashes.
-rw-r--r-- | Makeconf | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -611,6 +611,6 @@ endef echo '$*.o: $<' > $@ # Rule to make executable shell scripts from .sh files. -%: %.sh $(top_srcdir)/sh-version.sed - sed -e 's/STANDARD_HURD_VERSION_\\(.[^_]*\\)_/\\1 (GNU Hurd) $(hurd-version)/' < $< > $@ +%: %.sh + sed -e 's/STANDARD_HURD_VERSION_\(.[^_]*\)_/\1 (GNU Hurd) $(hurd-version)/' < $< > $@ chmod +x $@ |