r1014 - in /unstable/vlc/debian: changelog rules
lool at users.alioth.debian.org
lool at users.alioth.debian.org
Fri Jan 11 17:11:22 UTC 2008
Author: lool
Date: Fri Jan 11 17:11:22 2008
New Revision: 1014
URL: http://svn.debian.org/wsvn/pkg-multimedia/?sc=1&rev=1014
Log:
* Pass --quiltrc /dev/null to quilt and use $(QUILT) to invoke quilt.
Modified:
unstable/vlc/debian/changelog
unstable/vlc/debian/rules
Modified: unstable/vlc/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-multimedia/unstable/vlc/debian/changelog?rev=1014&op=diff
==============================================================================
--- unstable/vlc/debian/changelog (original)
+++ unstable/vlc/debian/changelog Fri Jan 11 17:11:22 2008
@@ -22,6 +22,7 @@
* Drop debian/*.dirs.
* Only pass --host to configure if DEB_BUILD_GNU_TYPE and DEB_HOST_GNU_TYPE
differ.
+ * Pass --quiltrc /dev/null to quilt and use $(QUILT) to invoke quilt.
-- Loic Minier <lool at dooz.org> Fri, 11 Jan 2008 17:32:36 +0100
Modified: unstable/vlc/debian/rules
URL: http://svn.debian.org/wsvn/pkg-multimedia/unstable/vlc/debian/rules?rev=1014&op=diff
==============================================================================
--- unstable/vlc/debian/rules (original)
+++ unstable/vlc/debian/rules Fri Jan 11 17:11:22 2008
@@ -18,6 +18,9 @@
else
confflags := --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE)
endif
+
+# how to call quilt
+QUILT := QUILT_PATCHES=debian/patches quilt --quiltrc /dev/null
#
# Compilation options
@@ -109,7 +112,7 @@
build: build-stamp
build-stamp:
dh_testdir
- QUILT_PATCHES=debian/patches quilt push -a || test $$? = 2
+ $(QUILT) push -a || test $$? = 2
./configure --enable-static --mandir=$${prefix}/share/man $(confflags)
$(MAKE) src/libvlc.la
cp src/.libs/libvlc.a src/libvlc.a
@@ -140,7 +143,7 @@
# Remove spurious autotools stuff
rm -f config.log confdefs.h
# Unpatch package
- QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2
+ $(QUILT) pop -a -R || test $$? = 2
dh_clean
install: build
More information about the pkg-multimedia-commits
mailing list