diff options
author | Luca Boccassi <luca.boccassi@gmail.com> | 2016-09-20 17:16:26 +0100 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2016-09-20 17:17:34 +0100 |
commit | 0db321853cccd9f85fcb5afcfae7e54c4aabdcb0 (patch) | |
tree | 51e39e8a2d295183b166addddd49fd1b72398517 | |
parent | f9031362bce4f60cb57b06380d9ed1692c6f6bb9 (diff) |
Fix README build-dep bash snippet
Change-Id: I8efb4f41d53324c10cc902c6927a7f463f614fea
Signed-off-by: Luca Boccassi <luca.boccassi@gmail.com>
-rw-r--r-- | debian/README.source | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/README.source b/debian/README.source index 06dbd856..a21f5eee 100644 --- a/debian/README.source +++ b/debian/README.source @@ -3,7 +3,7 @@ How to build the package - for CI systems, etc 1 - install all the build-dependencies as listed in the debian/control file. From the repo top-level directory: -apt-get install `dpkg-checkbuilddeps |& sed "s/dpkg-checkbuilddeps: Unmet build dependencies://g"` +apt-get install `dpkg-checkbuilddeps |& sed "s/.*://g" |& sed "s/(...[0-9]*)//g"` 2 - run debuild (the flags will avoid signing the built packages): From the repo top-level directory: |