Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: ulf at uclibc.org <ulf@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] svn commit: trunk/buildroot/package/alsa-lib
Date: Mon, 23 Jul 2007 05:02:36 -0700 (PDT)	[thread overview]
Message-ID: <20070723120236.83182A6AA7@busybox.net> (raw)

Author: ulf
Date: 2007-07-23 05:02:35 -0700 (Mon, 23 Jul 2007)
New Revision: 19222

Log:
cleanup alsa-lib

Modified:
   trunk/buildroot/package/alsa-lib/alsa-lib.mk


Changeset:
Modified: trunk/buildroot/package/alsa-lib/alsa-lib.mk
===================================================================
--- trunk/buildroot/package/alsa-lib/alsa-lib.mk	2007-07-23 12:01:05 UTC (rev 19221)
+++ trunk/buildroot/package/alsa-lib/alsa-lib.mk	2007-07-23 12:02:35 UTC (rev 19222)
@@ -3,10 +3,10 @@
 # alsa-lib
 #
 #############################################################
-ALSA_LIB_VER:=1.0.14a
-ALSA_LIB_SOURCE:=alsa-lib-$(ALSA_LIB_VER).tar.bz2
+ALSA_LIB_VERSION:=1.0.14a
+ALSA_LIB_SOURCE:=alsa-lib-$(ALSA_LIB_VERSION).tar.bz2
 ALSA_LIB_SITE:=ftp://ftp.alsa-project.org/pub/lib
-ALSA_LIB_DIR:=$(BUILD_DIR)/alsa-lib-$(ALSA_LIB_VER)
+ALSA_LIB_DIR:=$(BUILD_DIR)/alsa-lib-$(ALSA_LIB_VERSION)
 ALSA_LIB_CAT:=$(BZCAT)
 ALSA_LIB_BINARY:=libasound.so.2.0.0
 ALSA_LIB_TARGET_BINARY:=usr/lib/$(ALSA_LIB_BINARY)
@@ -16,12 +16,13 @@
 
 $(ALSA_LIB_DIR)/.unpacked: $(DL_DIR)/$(ALSA_LIB_SOURCE)
 	$(ALSA_LIB_CAT) $(DL_DIR)/$(ALSA_LIB_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
-	toolchain/patch-kernel.sh $(ALSA_LIB_DIR) package/alsa-lib/ alsa-lib-$(ALSA_LIB_VER)\*.patch*
+	toolchain/patch-kernel.sh $(ALSA_LIB_DIR) package/alsa-lib/ alsa-lib-$(ALSA_LIB_VERSION)\*.patch*
 	$(CONFIG_UPDATE) $(ALSA_LIB_DIR)
-	@touch $@
+	touch $@
 
 $(ALSA_LIB_DIR)/.configured: $(ALSA_LIB_DIR)/.unpacked
 	(cd $(ALSA_LIB_DIR); rm -rf config.cache; \
+		$(TARGET_CONFIGURE_ARGS) \
 		$(TARGET_CONFIGURE_OPTS) \
 		CFLAGS="$(TARGET_CFLAGS)" \
 		LDFLAGS="$(TARGET_LDFLAGS)" \
@@ -36,25 +37,25 @@
 		--disable-docs \
 		$(DISABLE_NLS) \
 	);
-	@touch $@
+	touch $@
 
 $(ALSA_LIB_DIR)/src/.libs/$(ALSA_LIB_BINARY): $(ALSA_LIB_DIR)/.configured
 	$(MAKE) -C $(ALSA_LIB_DIR)
-	@touch -c $@
+	touch -c $@
 
 $(STAGING_DIR)/$(ALSA_LIB_TARGET_BINARY): $(ALSA_LIB_DIR)/src/.libs/$(ALSA_LIB_BINARY)
 	$(MAKE) DESTDIR=$(STAGING_DIR) -C $(ALSA_LIB_DIR) install
-	@touch -c $@
+	touch -c $@
 
 $(TARGET_DIR)/$(ALSA_LIB_TARGET_BINARY): $(STAGING_DIR)/$(ALSA_LIB_TARGET_BINARY)
-	@mkdir -p $(TARGET_DIR)/usr/share/alsa
-	@mkdir -p $(TARGET_DIR)/usr/lib/alsa-lib
+	mkdir -p $(TARGET_DIR)/usr/share/alsa
+	mkdir -p $(TARGET_DIR)/usr/lib/alsa-lib
 	cp -dpf  $(STAGING_DIR)/lib/libasound.so*  $(TARGET_DIR)/usr/lib/
 	cp -rdpf $(STAGING_DIR)/usr/share/alsa/*   $(TARGET_DIR)/usr/share/alsa/
 	cp -rdpf $(STAGING_DIR)/usr/lib/alsa-lib/* $(TARGET_DIR)/usr/lib/alsa-lib/
 	-$(STRIP) --strip-unneeded $(TARGET_DIR)/usr/lib/libasound.so*
 	-$(STRIP) --strip-unneeded $(TARGET_DIR)/usr/lib/alsa-lib/*.so
-	@touch -c $@
+	touch -c $@
 
 alsa-lib: linux26 uclibc $(TARGET_DIR)/$(ALSA_LIB_TARGET_BINARY)
 

             reply	other threads:[~2007-07-23 12:02 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-07-23 12:02 ulf at uclibc.org [this message]
  -- strict thread matches above, loose matches on Subject: below --
2007-07-28 17:14 [Buildroot] svn commit: trunk/buildroot/package/alsa-lib ulf at uclibc.org
2007-08-24  9:26 aldot at uclibc.org
2007-09-23 12:12 ulf at uclibc.org
2007-11-28  7:09 ulf at uclibc.org
2007-11-28  7:07 ` Hans-Christian Egtvedt
2007-11-28  9:05   ` Ulf Samuelsson
2007-11-28  9:13 ulf at uclibc.org
2008-03-06 17:53 ninevoltz at uclibc.org
2008-03-06 18:47 ` Hans-Christian Egtvedt
2008-03-06 19:48 ninevoltz at uclibc.org
2008-04-10 19:25 ninevoltz at uclibc.org

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=20070723120236.83182A6AA7@busybox.net \
    --to=ulf@uclibc.org \
    --cc=buildroot@busybox.net \
    /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