diff options
author | jcorgan | 2007-10-10 11:46:53 +0000 |
---|---|---|
committer | jcorgan | 2007-10-10 11:46:53 +0000 |
commit | c3afdef49407739ab106cae31b0899eaaf32aacc (patch) | |
tree | 3509dc3e5ccf5a8d0576a9aacd5d0ba79d152a70 /debian/gen-install-files.sh | |
parent | 577d40edc52e303a2594b3b51bd22a4927878273 (diff) | |
download | gnuradio-c3afdef49407739ab106cae31b0899eaaf32aacc.tar.gz gnuradio-c3afdef49407739ab106cae31b0899eaaf32aacc.tar.bz2 gnuradio-c3afdef49407739ab106cae31b0899eaaf32aacc.zip |
Tweaks to Debian packaging.
Added .so versioning where needed (libpmt, libmblock, libgromnithread) to allow automated dependency checking.
Reverted (perhaps temporarily) to '3.0.svn' version numbering as the '~' trick wasn't working with Ubuntu
Note: the -dev packages don't seem to be sufficient to compile the gr-howto-write-a-block module, so still debugging.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@6610 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'debian/gen-install-files.sh')
-rwxr-xr-x | debian/gen-install-files.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/gen-install-files.sh b/debian/gen-install-files.sh index 4fcccadc7..e7a63b1a3 100755 --- a/debian/gen-install-files.sh +++ b/debian/gen-install-files.sh @@ -106,11 +106,11 @@ $EXTRACT gr-audio-alsa/src/Makefile ourpython_PYTHON >>$NAME # They are only separate in this package for C++ only experimentation $EXTRACT gr-audio-alsa/src/Makefile lib_LTLIBRARIES >>$NAME $EXTRACT gr-audio-alsa/src/Makefile lib_LTLIBRARIES | \ - sed -e 's/\.la$/.so/' >>$NAME + sed -e 's/\.la$/.so*/' >>$NAME # $EXTRACT gr-audio-alsa/src/Makefile ourlib_LTLIBRARIES >>$NAME $EXTRACT gr-audio-alsa/src/Makefile ourlib_LTLIBRARIES | \ - sed -e 's/\.la$/.so/' >>$NAME + sed -e 's/\.la$/.so*/' >>$NAME # python-gnuradio-audio-jack NAME=debian/python-gnuradio-audio-jack.install |