summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorJérémie Courrèges-Anglas <jca@wxcvbn.org>2013-06-25 20:05:59 +0200
committerJérémie Courrèges-Anglas <jca@wxcvbn.org>2013-06-25 20:05:59 +0200
commitb02d855fbdab5849db59f0edd9cc5e6038d9aae2 (patch)
tree4bc8b36367835d2d2983be19460e630ea9b11f5f /contrib
parentbbcbb9a9c00cb4c0ad277282f5fa4e32e347893e (diff)
downloadratpoison-b02d855fbdab5849db59f0edd9cc5e6038d9aae2.zip
No path hardcoding when generating bindings.
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/genrpbindings6
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/genrpbindings b/contrib/genrpbindings
index 08c5d1d..f94d52e 100755
--- a/contrib/genrpbindings
+++ b/contrib/genrpbindings
@@ -40,8 +40,10 @@ use warnings;
$\="\n";
-# set this to your rp binary
-$RATPOISON=$ENV{RATPOISON} || "ratpoison";
+# Feel free to hardcode this if you installed ratpoison in
+# a non-standard path, but note that you can also use the RATPOISON
+# environment variable
+$RATPOISON = 'ratpoison';
# open source file
$ACTIONS_C="../src/actions.c";