diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-11-26 00:22:32 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-11-26 00:22:32 +0000 |
commit | 0a42f2e3564b700cadc27f7c47ac4e5a60165915 (patch) | |
tree | 7c32c183166f753a97d6e94d99eb0b46b6ba5be9 /app-cdr/uif2iso | |
parent | Gnome-sharp and gnome-desktop-sharp added to mono-2 mask (diff) | |
download | gentoo-2-0a42f2e3564b700cadc27f7c47ac4e5a60165915.tar.gz gentoo-2-0a42f2e3564b700cadc27f7c47ac4e5a60165915.tar.bz2 gentoo-2-0a42f2e3564b700cadc27f7c47ac4e5a60165915.zip |
Switch to not having the actual linking line in the Makefile, use LDLIBS instead.
(Portage version: 2.2_rc16/cvs/Linux 2.6.27-gentoo-r4 x86_64)
Diffstat (limited to 'app-cdr/uif2iso')
-rw-r--r-- | app-cdr/uif2iso/ChangeLog | 7 | ||||
-rw-r--r-- | app-cdr/uif2iso/files/0.1.7-Makefile | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/app-cdr/uif2iso/ChangeLog b/app-cdr/uif2iso/ChangeLog index 8372c85ffda5..8f1ed35b9bca 100644 --- a/app-cdr/uif2iso/ChangeLog +++ b/app-cdr/uif2iso/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-cdr/uif2iso # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/uif2iso/ChangeLog,v 1.3 2008/11/13 02:52:53 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-cdr/uif2iso/ChangeLog,v 1.4 2008/11/26 00:22:32 flameeyes Exp $ + + 26 Nov 2008; Diego E. Pettenò <flameeyes@gentoo.org> + files/0.1.7-Makefile: + Switch to not having the actual linking line in the Makefile, use LDLIBS + instead. *uif2iso-0.1.7 (13 Nov 2008) diff --git a/app-cdr/uif2iso/files/0.1.7-Makefile b/app-cdr/uif2iso/files/0.1.7-Makefile index fbee3affa3a3..0b8a2bd95355 100644 --- a/app-cdr/uif2iso/files/0.1.7-Makefile +++ b/app-cdr/uif2iso/files/0.1.7-Makefile @@ -5,5 +5,6 @@ OBJS := $(patsubst %.c,%.o,$(wildcard *.c)) CFLAGS += -DMAGICISO_IS_SHIT +LDLIBS = -lz + uif2iso: $(OBJS) - $(CC) $(LDFLAGS) $^ -o $@ -lz |