summaryrefslogtreecommitdiff
path: root/Makeconf
diff options
context:
space:
mode:
authorCarl Fredrik Hammar <hammy.lite@gmail.com>2010-05-26 19:31:37 +0200
committerCarl Fredrik Hammar <hammy.lite@gmail.com>2010-05-26 19:31:37 +0200
commit592317250d5b75ed4cf225ac9387871329b81755 (patch)
tree1c8c89e4c69d89e1ea323f263da4bca458264ae4 /Makeconf
parent7913beaef3e6a2c4f7f315a8db7a31dbe1f713e0 (diff)
Fix --version in scripts
* Makeconf (%): Don't depend on removed files. Remove excess backslashes.
Diffstat (limited to 'Makeconf')
-rw-r--r--Makeconf4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makeconf b/Makeconf
index e9b20452..282437d4 100644
--- a/Makeconf
+++ b/Makeconf
@@ -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 $@