summaryrefslogtreecommitdiff
path: root/net-mgmt/confregdecode/files/patch-Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'net-mgmt/confregdecode/files/patch-Makefile')
-rw-r--r--net-mgmt/confregdecode/files/patch-Makefile25
1 files changed, 25 insertions, 0 deletions
diff --git a/net-mgmt/confregdecode/files/patch-Makefile b/net-mgmt/confregdecode/files/patch-Makefile
new file mode 100644
index 000000000000..892247713a88
--- /dev/null
+++ b/net-mgmt/confregdecode/files/patch-Makefile
@@ -0,0 +1,25 @@
+--- Makefile.orig Fri Nov 28 21:00:51 2003
++++ Makefile Fri Dec 19 01:31:42 2003
+@@ -3,17 +3,17 @@
+ # $Id: Makefile,v 1.3 2003/11/29 01:41:36 jmarcus Exp $
+ #
+
+-JAVAC= /usr/local/jdk1.4.2/bin/javac
+-JAVAC_FLAGS= -O -g
+-JAR= /usr/local/jdk1.4.2/bin/jar
++JAVAC?= /usr/local/jdk1.4.2/bin/javac
++JAVAC_FLAGS?= -O -g
++JAR?= /usr/local/jdk1.4.2/bin/jar
+ RM= /bin/rm
+
+ all:
+ $(JAVAC) $(JAVAC_FLAGS) com/marcuscom/confregdecode/ConfregDecode.java
+
+ jar: all
+- $(JAR) -cvf cd.jar com/marcuscom/confregdecode/*.class
++ $(JAR) -cvf confregdecode.jar com/marcuscom/confregdecode/*.class
+
+ clean:
+ $(RM) -f com/marcuscom/confregdecode/*.class
+- $(RM) -f cd.jar
++ $(RM) -f confregdecode.jar