OpenWrt packages
Sign in or create your account | Project List | Help
OpenWrt packages Git Source Tree
Root/
| 1 | From 5d548f4c49466df8928a108a4e864fd9372139b2 Mon Sep 17 00:00:00 2001 |
| 2 | From: Joshua Judson Rosen <rozzin@geekspace.com> |
| 3 | Date: Wed, 27 Apr 2011 00:26:04 -0400 |
| 4 | Subject: [PATCH 10/17] Use the *Make* variables defined by Autoconf, not the autoconf variables themselves. |
| 5 | |
| 6 | --- |
| 7 | Makefile.am | 4 ++-- |
| 8 | 1 files changed, 2 insertions(+), 2 deletions(-) |
| 9 | |
| 10 | diff --git a/Makefile.am b/Makefile.am |
| 11 | index 9b1a5f4..0d22faf 100644 |
| 12 | --- a/Makefile.am |
| 13 | +++ b/Makefile.am |
| 14 | @@ -3,8 +3,8 @@ SUBDIRS = po doc icons |
| 15 | |
| 16 | bin_PROGRAMS = gjay |
| 17 | |
| 18 | -gjay_LDADD = @GTK_LIBS@ @DBUS_GLIB_LIBS@ @GSL_LIBS@ |
| 19 | -AM_CFLAGS = -Wall @GTK_CFLAGS@ @DBUS_GLIB_CFLAGS@ @GSL_CFLAGS@ |
| 20 | +gjay_LDADD = $(GTK_LIBS) $(DBUS_GLIB_LIBS) $(GSL_LIBS) |
| 21 | +AM_CFLAGS = -Wall $(GTK_CFLAGS) $(DBUS_GLIB_CFLAGS) $(GSL_CFLAGS) |
| 22 | |
| 23 | gjay_SOURCES = gjay.h songs.h prefs.h ui.h rgbhsv.h analysis.h playlist.h \ |
| 24 | ipc.h constants.h vorbis.h mp3.h flac.h i18n.h \ |
| 25 | -- |
| 26 | 1.7.2.5 |
| 27 | |
| 28 |
