1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: FTBFS: cbuild.def: not found
Fix Failure To Build From Source due to a small bashism in the cbuild script
Author: Margarita Manterola <marga@debian.org>
Bug-Debian: http://bugs.debian.org/379486
Forwarded: no, since upstream has abandoned this software
--- xplot-1.19.orig/libfli/lib/cbuild
+++ xplot-1.19/libfli/lib/cbuild
@@ -28,7 +28,7 @@ message ()
############### now source cbuild.def if it exists
if [ -f "cbuild.def" ] ; then
- . cbuild.def || error syntax error in cbuild.def
+ . ./cbuild.def || error syntax error in cbuild.def
fi
############### non-configurable settings
|