summaryrefslogtreecommitdiff
path: root/dh_haskell_shlibdeps
diff options
context:
space:
mode:
Diffstat (limited to 'dh_haskell_shlibdeps')
-rw-r--r--dh_haskell_shlibdeps14
1 files changed, 7 insertions, 7 deletions
diff --git a/dh_haskell_shlibdeps b/dh_haskell_shlibdeps
index c530c22..2e6a7d1 100644
--- a/dh_haskell_shlibdeps
+++ b/dh_haskell_shlibdeps
@@ -37,17 +37,17 @@ do
ext=`package_ext ${pkg}`
case "$ext" in
dev)
- if [ -z "$files" ] ; then
- files=`find_config_for_ghc $pkg`
- fi
+ if [ -z "$files" ] ; then
+ files=`find_config_for_ghc $pkg`
+ fi
;;
esac
done
if [ -z "$files" ]
then
- echo "dh_haskell_shlibdeps - no installed package description files found" >&2
- exit 1
+ echo "dh_haskell_shlibdeps - no installed package description files found" >&2
+ exit 1
fi
T_DIR=debian/dh_haskell_shlibdeps
@@ -58,11 +58,11 @@ for file in $files
do
for dir in $(grep-dctrl -s library-dirs -n . < $file)
do
- args="$args -L$dir"
+ args="$args -L$dir"
done
for lib in $(grep-dctrl -s extra-libraries -n . < $file)
do
- args="$args -l$lib"
+ args="$args -l$lib"
done
done