From eda2f5b8cd9ae85987a42054a0cf4b61c33d682e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 21 Aug 2019 09:48:33 +0200 Subject: [PATCH] debian: use sassc to build css files (#35498) --- debian/control | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/control b/debian/control index cf8d45b..7eb9647 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: gadjo Maintainer: Frederic Peters Section: python Priority: optional -Build-Depends: python-setuptools (>= 33), python-pkg-resources (>= 33), dh-python, dpkg-dev, python-all (>= 2.6.6-3), python2.7-dev, python-all-dev, python3-setuptools, python3-all, debhelper (>= 9), python-django, python3-django, inkscape, python-imaging, python3-pil, libjpeg-dev, zlib1g-dev, ruby-sass (>= 3.4) +Build-Depends: python-setuptools (>= 33), python-pkg-resources (>= 33), dh-python, dpkg-dev, python-all (>= 2.6.6-3), python2.7-dev, python-all-dev, python3-setuptools, python3-all, debhelper (>= 9), python-django, python3-django, inkscape, python-imaging, python3-pil, libjpeg-dev, zlib1g-dev, sassc Standards-Version: 3.9.1 Package: python-gadjo diff --git a/setup.py b/setup.py index 7d3adea..f001f97 100644 --- a/setup.py +++ b/setup.py @@ -96,7 +96,7 @@ class compile_scss(Command): def run(self): sass_bin = None - for program in ('sass', 'sassc'): + for program in ('sassc', 'sass'): sass_bin = find_executable(program) if sass_bin: break