[SCM] jack-audio-connection-kit/master: Don't use /dev/shm on non-Linux archictures (Closes: #618982)

adiknoth-guest at users.alioth.debian.org adiknoth-guest at users.alioth.debian.org
Mon Mar 21 09:31:43 UTC 2011


The following commit has been merged in the master branch:
commit ad4b7d0a41bf7f64889105e70bd7663e4e0ffe8b
Author: Adrian Knoth <adi at drcomp.erfurt.thur.de>
Date:   Mon Mar 21 10:13:39 2011 +0100

    Don't use /dev/shm on non-Linux archictures (Closes: #618982)
    
    /dev/shm isn't available on kFreeBSD, so let's stick to /tmp/ on
    architectures other than Linux.

diff --git a/debian/rules b/debian/rules
index f900bf8..e615907 100755
--- a/debian/rules
+++ b/debian/rules
@@ -50,6 +50,8 @@ endif
 
 ifeq (linux-gnu,$(DEB_HOST_GNU_SYSTEM))
   DEB_CONFIGURE_EXTRA_FLAGS += --with-default-tmpdir=/dev/shm 
+else
+  DEB_CONFIGURE_EXTRA_FLAGS += --with-default-tmpdir=/tmp 
 endif
 
 ifneq (,$(filter doopt,$(DEB_BUILD_OPTIONS)))

-- 
Debian packaging for jack-audio-connection-kit



More information about the pkg-multimedia-commits mailing list