]> git.ipfire.org Git - thirdparty/dhcpcd.git/commitdiff
Although we compile on NetBSD, we fail to add routes correctly.
authorRoy Marples <roy@marples.name>
Thu, 26 Apr 2007 16:46:55 +0000 (16:46 +0000)
committerRoy Marples <roy@marples.name>
Thu, 26 Apr 2007 16:46:55 +0000 (16:46 +0000)
ChangeLog
Makefile

index 53a333af7756f0e41e9bf43ae244e5ea9145f425..071df3d434398b0ef082aead0df81935e967e75e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,4 @@
+Compiles ok on NetBSD, but doesn't add routes yet - thanks to Gabor Z. Papp.
 If the current hostname contains dots then send it as a FQDN.
 Ensure that static routes are always added before routers.
 Use getnameinfo instead of gethostbyaddr.
index 93127ca44a356c983beb501b1cd20164b4ee70c8..ebbe1942f27d9964097fb75799ed12f8dc0a6182 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 3.0.18_pre2
+VERSION = 3.0.18_pre3
 CFLAGS ?= -O2 -pipe
 
 # Should work for both GNU make and BSD make
@@ -75,7 +75,8 @@ clean:
 dist:
        $(INSTALL) -m 0755 -d /tmp/dhcpcd-$(VERSION)
        cp -RPp . /tmp/dhcpcd-$(VERSION)
-       $(MAKE) -C /tmp/dhcpcd-$(VERSION) clean
+       (cd /tmp/dhcpcd-$(VERSION); $(MAKE) clean)
        rm -rf /tmp/dhcpcd-$(VERSION)/*.bz2 /tmp/dhcpcd-$(VERSION)/.svn
        tar cvjpf dhcpcd-$(VERSION).tar.bz2 -C /tmp dhcpcd-$(VERSION)
        rm -rf /tmp/dhcpcd-$(VERSION)
+       ls -l dhcpcd-$(VERSION).tar.bz2