diff options
author | Simon Hausmann <hausmann@kde.org> | 2002-10-08 08:41:51 +0000 |
---|---|---|
committer | Aleix Pol <aleixpol@kde.org> | 2014-04-26 14:11:12 +0200 |
commit | dd6fa94de6181fbd444309abb880493f97364151 (patch) | |
tree | d3d6fea835129e9e8813467ed9675c7c388b2dac | |
parent | 15fc5141574ce050a58b11eedfec0729a9be5a62 (diff) | |
download | kconfig-dd6fa94de6181fbd444309abb880493f97364151.tar.gz kconfig-dd6fa94de6181fbd444309abb880493f97364151.tar.bz2 |
- oops, reverting AM_LDFLAGS back to LDFLAGS, as David found out that automake 1.5 doesn't support AM_LDFLAGS :-( Sorry, I thought it's a no-brainer, but apparently it isn't :-(
svn path=/trunk/kdebase/kioslave/; revision=182707
-rw-r--r-- | src/kreadconfig/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kreadconfig/Makefile.am b/src/kreadconfig/Makefile.am index 384f1092..46256830 100644 --- a/src/kreadconfig/Makefile.am +++ b/src/kreadconfig/Makefile.am @@ -1,7 +1,7 @@ AM_CPPFLAGS = -DQT_NO_CAST_ASCII INCLUDES = $(all_includes) -AM_LDFLAGS = $(all_libraries) $(KDE_RPATH) +LDFLAGS = $(all_libraries) $(KDE_RPATH) LDADD = $(LIB_KDECORE) bin_PROGRAMS = kreadconfig |