summarylogtreecommitdiffstats
path: root/0021-Load-checkinstallrc-from-etc.patch
diff options
context:
space:
mode:
Diffstat (limited to '0021-Load-checkinstallrc-from-etc.patch')
-rw-r--r--0021-Load-checkinstallrc-from-etc.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/0021-Load-checkinstallrc-from-etc.patch b/0021-Load-checkinstallrc-from-etc.patch
new file mode 100644
index 000000000000..d31e858b7957
--- /dev/null
+++ b/0021-Load-checkinstallrc-from-etc.patch
@@ -0,0 +1,22 @@
+From: Felipe Sateler <fsateler@gmail.com>
+Date: Thu, 15 Apr 2010 14:47:45 -0400
+Subject: [PATCH] Load checkinstallrc from /etc
+
+---
+ checkinstall | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/checkinstall.in b/checkinstall.in
+index d2ba87e..aeae91e 100755
+--- a/checkinstall.in
++++ b/checkinstall.in
+@@ -500,7 +500,7 @@ function copy_dir_hierarchy {
+ ckversion
+ echo
+
+-CHECKINSTALLRC=${CHECKINSTALLRC:-${INSTALLDIR}/lib/checkinstall/checkinstallrc}
++CHECKINSTALLRC=${CHECKINSTALLRC:-/etc/checkinstallrc}
+ if ! [ -f $CHECKINSTALLRC ]; then
+ echog "The checkinstallrc file was not found at:\n$CHECKINSTALLRC"
+ echo
+--