From: bugtrack@alsa-project.org
To: alsa-devel@alsa-project.org
Subject: [ALSA - driver 0001370]: Please apply patch to Rules.make
Date: Thu, 25 Aug 2005 14:12:09 +0200 [thread overview]
Message-ID: <3371521cd7ce5a7287f6ec7d56904aee@bugtrack.alsa-project.org> (raw)
The following issue has been SUBMITTED.
======================================================================
<https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1370>
======================================================================
Reported By: jdthood
Assigned To:
======================================================================
Project: ALSA - driver
Issue ID: 1370
Category: 1_OTHERS
Reproducibility: always
Severity: feature
Priority: normal
Status: new
Distribution:
Kernel Version:
======================================================================
Date Submitted: 08-25-2005 14:12 CEST
Last Modified: 08-25-2005 14:12 CEST
======================================================================
Summary: Please apply patch to Rules.make
Description:
In Debian we have to patch Rules.make so that it puts a temporary file
at a different location. (Details: we use the mktemp program to create
the file and return the name of the file.) It would be nice if upstream
would apply a patch to make our patch smaller.
Here is the proposed patch, which applies against 1.0.10rc1. It
shouldn't
change any behavior by default, but when applied it allows distros to
change the location of the temporary file with a one-line patch.
diff -urNad alsa-driver-1.0.8/Rules.make
/tmp/dpep.jldRsB/alsa-driver-1.0.8/Rules.make
--- alsa-driver-1.0.8/Rules.make 2004-12-09 20:39:11.000000000
+0100
+++ /tmp/dpep.jldRsB/alsa-driver-1.0.8/Rules.make 2005-01-16
15:04:22.000000000 +0100
@@ -287,7 +287,7 @@
genksyms_smp_prefix :=
endif
-$(MODINCL)/$(MODPREFIX)%.ver: %.c
+$(MODINCL)/$(MODPREFIX)%.ver: %.c update-sndvers
@if [ ! -r $(MODINCL)/$(MODPREFIX)$*.stamp -o
$(MODINCL)/$(MODPREFIX)$*.stamp -ot $< ]; then \
if [ ! -f
$(CONFIG_SND_KERNELDIR)/include/linux/modules/$*.stamp ]; then \
echo '$(CC) -D__KERNEL__ $(CFLAGS) $(EXTRA_CFLAGS) -E
-D__GENKSYMS__ $<'; \
@@ -308,7 +308,8 @@
endif # export-objs
define update-sndvers
- @(echo "#ifndef _LINUX_SNDVERSIONS_H"; \
+ (tmpfile=`echo $(SNDVERSIONS).tmp`; \
+ (echo "#ifndef _LINUX_SNDVERSIONS_H"; \
echo "#define _LINUX_SNDVERSIONS_H"; \
echo "#include <linux/modsetver.h>"; \
cd $(TOPDIR)/include/modules; \
@@ -316,14 +317,14 @@
if [ -f $$f ]; then echo "#include \"modules/$${f}\""; fi; \
done; \
echo "#endif"; \
- ) > $(SNDVERSIONS).tmp
- @if [ -r $(SNDVERSIONS) ] && cmp -s $(SNDVERSIONS)
$(SNDVERSIONS).tmp; then \
+ ) > $${tmpfile}; \
+ if [ -r $(SNDVERSIONS) ] && cmp -s $(SNDVERSIONS) $${tmpfile};
then \
echo $(SNDVERSIONS) was not updated; \
- rm -f $(SNDVERSIONS).tmp; \
+ rm -f $${tmpfile}; \
else \
echo $(SNDVERSIONS) was updated; \
- mv -f $(SNDVERSIONS).tmp $(SNDVERSIONS); \
- fi
+ mv -f $${tmpfile} $(SNDVERSIONS); \
+ fi)
endef
$(SNDVERSIONS):
======================================================================
Issue History
Date Modified Username Field Change
======================================================================
08-25-05 14:12 jdthood New Issue
======================================================================
-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
next reply other threads:[~2005-08-25 12:12 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-08-25 12:12 bugtrack [this message]
-- strict thread matches above, loose matches on Subject: below --
2006-01-04 13:39 [ALSA - driver 0001370]: Please apply patch to Rules.make bugtrack
2006-01-04 15:52 bugtrack
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3371521cd7ce5a7287f6ec7d56904aee@bugtrack.alsa-project.org \
--to=bugtrack@alsa-project.org \
--cc=alsa-devel@alsa-project.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox