]> git.pld-linux.org Git - projects/cleanbuild.git/commitdiff
make multilib excludes configurable
authorElan Ruusamäe <glen@delfi.ee>
Sun, 16 Mar 2014 01:04:44 +0000 (03:04 +0200)
committerElan Ruusamäe <glen@delfi.ee>
Sun, 16 Mar 2014 01:04:44 +0000 (03:04 +0200)
cleanbuild

index 12656515beefd087449c7753f9c9ea0601d9f866..b4c05a6370aa1f8be742520c73d1216943cf43a9 100755 (executable)
@@ -14,6 +14,7 @@ NODEBUG=true
 CLEANAFTER=false
 FORCE_UMOUNT=false
 NOREBUILDDB=true
+MULTILIB=false
 # Whatever you set here as value, consider that it may not be shorter than
 # /usr/lib/debug (or /usr/src/debug) for debuginfo to work.
 # You get "Only dest dir longer than base dir not supported" error otherwise.
@@ -232,12 +233,15 @@ ignore \
        ghostscript-esp \
        perl-Scalar-List-Utils \
        perl-ExtUtils-Install \
-       \*-multilib-\* \
        phonon-backend-mplayer phonon-backend-vlc \
        icedtea6-jre java-sun-jre java5-sun-jre libgcj oracle-java7-jre \
        gnome-menus \
        gnome-speech-driver-festival gnome-speech-driver-speech-dispatcher
 
+if ! $MULTILIB; then
+       ignore '*-multilib-*'
+fi
+
 rebuilddb()
 {
        $NOREBUILDDB || rpm --root=$CHDIR --rebuilddb
This page took 0.115749 seconds and 4 git commands to generate.