diff options
author | pat <pat@FreeBSD.org> | 2002-07-25 01:38:33 +0800 |
---|---|---|
committer | pat <pat@FreeBSD.org> | 2002-07-25 01:38:33 +0800 |
commit | 7317185497e000c974958d539a8e91abd70c91b1 (patch) | |
tree | 87074324c0922c525c27b55c42ddc9d73769b173 /sysutils/x86info/files | |
parent | c03f8b379f1f1d227be7bfc37aadb7f47b7ab291 (diff) | |
download | freebsd-ports-gnome-7317185497e000c974958d539a8e91abd70c91b1.tar.gz freebsd-ports-gnome-7317185497e000c974958d539a8e91abd70c91b1.tar.zst freebsd-ports-gnome-7317185497e000c974958d539a8e91abd70c91b1.zip |
Update to 1.10
PR: ports/40953
Submitted by: maintainer
Diffstat (limited to 'sysutils/x86info/files')
-rw-r--r-- | sysutils/x86info/files/patch-Makefile | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/sysutils/x86info/files/patch-Makefile b/sysutils/x86info/files/patch-Makefile deleted file mode 100644 index 77026469eb22..000000000000 --- a/sysutils/x86info/files/patch-Makefile +++ /dev/null @@ -1,40 +0,0 @@ ---- Makefile.orig Fri Apr 26 14:48:53 2002 -+++ Makefile Fri Apr 26 14:51:26 2002 -@@ -1,8 +1,4 @@ --CFLAGS = -Wall -W -g -O2 #-m32 --#CFLAGS += -mwin32 -DWIN32_LEAN_AND_MEAN --SHELL = /bin/sh -- --all: x86info test -+all: x86info - - OBJS =\ - AMD/identify.o\ -@@ -38,13 +34,13 @@ - get_model_name.o\ - - x86info: $(OBJS) -- gcc $(CFLAGS) -o x86info $(OBJS) -+ ${CC} $(CFLAGS) -o x86info $(OBJS) - - .c.o: -- gcc $(CFLAGS) -o $@ -c $< -+ ${CC} $(CFLAGS) -o $@ -c $< - - .S.o: -- gcc $(CFLAGS) -o $@ -c $< -+ ${CC} $(CFLAGS) -o $@ -c $< - - nodes: - scripts/makenodes -@@ -53,7 +49,7 @@ - scripts/testnodes - - clean: -- @find . -name "*.o" -exec rm {} \; -- @find . -name "*~" -exec rm {} \; -- @rm -f x86info x86info.exe -+ @find . -name "*.o" -exec ${RM} {} \; -+ @find . -name "*~" -exec ${RM} {} \; -+ @${RM-F} x86info - |