diff options
author | Jeroen Roovers <jer@gentoo.org> | 2009-09-04 14:50:09 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2009-09-04 14:50:09 +0000 |
commit | eae18d10eafe7c5ce1c97e55bde5b7c39317a579 (patch) | |
tree | 114354277bfa4bfe7d793ad3ff8d5dcffe5b17f5 /app-text/lout/files | |
parent | stable sparc, bug 281475 (diff) | |
download | historical-eae18d10eafe7c5ce1c97e55bde5b7c39317a579.tar.gz historical-eae18d10eafe7c5ce1c97e55bde5b7c39317a579.tar.bz2 historical-eae18d10eafe7c5ce1c97e55bde5b7c39317a579.zip |
Respect CFLAGS (bug #240136), LDFLAGS.
Package-Manager: portage-2.2_rc40/cvs/Linux i686
Diffstat (limited to 'app-text/lout/files')
-rw-r--r-- | app-text/lout/files/lout-3.38-makefile.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app-text/lout/files/lout-3.38-makefile.patch b/app-text/lout/files/lout-3.38-makefile.patch new file mode 100644 index 000000000000..cb7fc66bf432 --- /dev/null +++ b/app-text/lout/files/lout-3.38-makefile.patch @@ -0,0 +1,33 @@ +--- lout-3.38/makefile.orig 2008-10-13 23:35:17.000000000 +0200 ++++ lout-3.38/makefile 2009-09-04 16:40:00.000000000 +0200 +@@ -295,11 +295,9 @@ + ZLIB = + ZLIBPATH = + +-CC = gcc +- + RCOPY = cp -r + +-COPTS = -ansi -pedantic -Wall -O3 ++COPTS += -ansi -pedantic -Wall + + CFLAGS = -DOS_UNIX=$(OSUNIX) \ + -DOS_DOS=$(OSDOS) \ +@@ -333,7 +331,7 @@ + z49.o z50.o z51.o z52.o + + lout: $(OBJS) +- $(CC) -o lout $(OBJS) $(ZLIB) -lm ++ $(CC) $(COPTS) $(LDFLAGS) -o lout $(OBJS) $(ZLIB) -lm + chmod a+x lout + + $(OBJS): externs.h +@@ -341,7 +339,7 @@ + externs.h: + + prg2lout: prg2lout.c +- $(CC) $(COPTS) -o prg2lout prg2lout.c ++ $(CC) $(COPTS) $(LDFLAGS) -o prg2lout prg2lout.c + chmod a+x prg2lout + + all: lout prg2lout |