Browse Source

Clifford Wolf <clifford@clifford.at>:

this is a small hotfix for the mine package (required for cross-builds)


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1542 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Clifford Wolf 21 years ago
parent
commit
3690e605fb
2 changed files with 16 additions and 0 deletions
  1. +1
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +15
    -0
      package/base/mine/hotfix.patch

+ 1
- 0
Documentation/Developers/CHANGELOG-RENE

@ -3,6 +3,7 @@
- Sebastian Jaenicke: updated elf, ethereal, rrdtool, snmpsession-0.98 and
xinetd-2.3.12
- Clifford Wolf: mine hotfix
*) 2003-09-28 (2.0.0-rc1 - 2.0.0-rc2)

+ 15
- 0
package/base/mine/hotfix.patch

@ -0,0 +1,15 @@
--- ./Makefile.orig 2003-09-29 00:26:40.000000000 +0200
+++ ./Makefile 2003-09-29 00:26:42.000000000 +0200
@@ -79,10 +79,10 @@
all: $(targets)
mine: $(MINE_ALL_OBJS)
- gcc $(MINE_ALL_OBJS) $(MINE_LDFLAGS) -o mine
+ $(CC) $(MINE_ALL_OBJS) $(MINE_LDFLAGS) -o mine
gasgui: $(GAS_OBJ)
- gcc $(GAS_OBJ) -ldialog -lcurses -lm -o gasgui
+ $(CC) $(GAS_OBJ) -ldialog -lcurses -lm -o gasgui
install:
install mine $(sysprefix)/bin/mine

Loading…
Cancel
Save