diff options
author | Christoph Mende <angelos@gentoo.org> | 2009-02-09 16:43:34 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2009-02-09 16:43:34 +0000 |
commit | f536a2a3329405907b6d3f8af278df5156603e50 (patch) | |
tree | 5b60f2d4145656a763312ebbb9aa0bda215cd0fc /x11-misc/transset-df/files | |
parent | pitivi needs setuptools at runtime (diff) | |
download | historical-f536a2a3329405907b6d3f8af278df5156603e50.tar.gz historical-f536a2a3329405907b6d3f8af278df5156603e50.tar.bz2 historical-f536a2a3329405907b6d3f8af278df5156603e50.zip |
Respect CC, CFLAGS, LDFLAGS
Package-Manager: portage-2.2_rc23/cvs/Linux x86_64
Diffstat (limited to 'x11-misc/transset-df/files')
-rw-r--r-- | x11-misc/transset-df/files/transset-df-6-ldflags.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/x11-misc/transset-df/files/transset-df-6-ldflags.patch b/x11-misc/transset-df/files/transset-df-6-ldflags.patch new file mode 100644 index 000000000000..741ca0485fb7 --- /dev/null +++ b/x11-misc/transset-df/files/transset-df-6-ldflags.patch @@ -0,0 +1,11 @@ +--- transset-df-6/Makefile.orig 2006-01-10 22:34:56.000000000 +0100 ++++ transset-df-6/Makefile 2009-02-09 17:36:59.292898452 +0100 +@@ -9,7 +9,7 @@ + OBJS=transSet.o dsimple.o + + transset-df: $(OBJS) +- $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBS) ++ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) + + $(OBJS): dsimple.h + |