Ticket #694: allow-compile-from-pristine-tarball.patch
| File allow-compile-from-pristine-tarball.patch, 1.7 kB (added by kelmo, 6 years ago) |
|---|
-
madwifi-0.svnr1645.0.9.0.orig/Makefile
old new 72 72 elif [ -s SNAPSHOT ]; then \ 73 73 ver=`sed -e '/^Revision: */!d;s///;q' SNAPSHOT`; \ 74 74 echo "#define SVNVERSION \"svn r$$ver\"" > $@; \ 75 else \ 76 touch svnversion.h; \ 75 77 fi; \ 76 78 77 79 # conflicts with the 'tools' subdirectory -
madwifi-0.svnr1645.0.9.0.orig/release.h
old new 36 36 * $Id: release.h 1590 2006-05-22 04:39:55Z mrenzmann $ 37 37 */ 38 38 #include "svnversion.h" 39 39 40 #define RELEASE_TYPE "BETA" 41 42 #ifdef SVNVERSION 40 43 #define RELEASE_VERSION SVNVERSION 44 #else 45 #define RELEASE_VERSION "0.9.0" 46 #endif -
madwifi-0.svnr1645.0.9.0.orig/scripts/make-release.bash
old new 196 196 mv release.h release.h.old 197 197 sed -e "/svnversion.h/d" \ 198 198 -e "/RELEASE_TYPE/ s/\".*\"/\"RELEASE\"/" \ 199 -e "/RELEASE_VERSION/ s/ SVNVERSION/\"$newrelease\"/" release.h.old > release.h199 -e "/RELEASE_VERSION/ s/\".*\"/\"$newrelease\"/" release.h.old > release.h 200 200 rm -f release.h.old 201 201 202 202
