diff options
Diffstat (limited to 'polish/trf/files/patch-Makefile')
-rw-r--r-- | polish/trf/files/patch-Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/polish/trf/files/patch-Makefile b/polish/trf/files/patch-Makefile new file mode 100644 index 000000000000..d2590dda5f4e --- /dev/null +++ b/polish/trf/files/patch-Makefile @@ -0,0 +1,20 @@ +--- Makefile.orig Fri Oct 3 18:00:32 2003 ++++ Makefile Fri Oct 3 18:01:51 2003 +@@ -1,5 +1,7 @@ ++CC ?= gcc ++CFLAGS+=-DFREEBSD + DESTDIR= +-prefix=/usr/local ++prefix=${PREFIX} + + all: + @case "`uname -s`" in \ +@@ -19,7 +21,7 @@ + gcc -DLINUX -Wall -o trfs trfs.c + + freebsd: +- gcc -DFREEBSD -Wall -o trfs trfs.c ++ $(CC) $(CFLAGS) -o trfs trfs.c + + trfs: + make all |