forked from wifidog/wifidog-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Makefile.am: Slight change in make ipk tagrget. It seems that some…
…times builddir isn't defined. srcdir works just as well in this case.
- Loading branch information
Showing
2 changed files
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
# $Id$ | ||
2007-07-06 Benoit Gr�goire <[email protected]> | ||
* Makefile.am: Slight change in make ipk tagrget. It seems that sometimes builddir isn't defined. srcdir works just as well in this case. | ||
|
||
2007-06-27 Benoit Gr�goire <[email protected]> | ||
* util.c: Fix while loop initialisation bug | ||
* conf.h: Forgot to change the value of NUM_EXT_INTERFACE_DETECT_RETRY to actually make it wait forever. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,8 +29,8 @@ doc: | |
ipk: dist | ||
make -C $(OPENWRTSDK) distclean | ||
mkdir -p $(OPENWRTSDK)/dl | ||
cp -f ${builddir}/wifidog-@[email protected] $(OPENWRTSDK)/dl/ | ||
make -C ${builddir}/contrib/build-openwrt-ipk/wifidog TOPDIR=$(OPENWRTSDK) PKG_MD5SUM= V=99 | ||
cp -f ${srcdir}/wifidog-@[email protected] $(OPENWRTSDK)/dl/ | ||
make -C ${srcdir}/contrib/build-openwrt-ipk/wifidog TOPDIR=$(OPENWRTSDK) PKG_MD5SUM= V=99 | ||
@echo DONE. If there were no errors, your package should be in: $(OPENWRTSDK)/bin/packages/ | ||
.PHONY: rpm | ||
rpm: dist | ||
|