[Pkg-ocaml-maint-commits] r1890 - trunk/packages/ocaml/trunk/debian
Sven Luther
luther at costa.debian.org
Wed Nov 2 11:37:59 UTC 2005
Author: luther
Date: 2005-11-02 11:37:58 +0000 (Wed, 02 Nov 2005)
New Revision: 1890
Modified:
trunk/packages/ocaml/trunk/debian/rules
Log:
Ah, forgot to escape the $'s :/
Modified: trunk/packages/ocaml/trunk/debian/rules
===================================================================
--- trunk/packages/ocaml/trunk/debian/rules 2005-11-02 11:36:31 UTC (rev 1889)
+++ trunk/packages/ocaml/trunk/debian/rules 2005-11-02 11:37:58 UTC (rev 1890)
@@ -38,7 +38,7 @@
config-stamp: configure
for t in `find . -name \*.in`; do \
- sed -e 's%#OcamlABI#%3.09.0%' -e 's%#OcamlMAJOR#%3.09%' $t >${t%.in}; \
+ sed -e 's%#OcamlABI#%3.09.0%' -e 's%#OcamlMAJOR#%3.09%' $$t >$${t%.in}; \
done
dh_testdir
# Add here commands to configure the package.
More information about the Pkg-ocaml-maint-commits
mailing list