Parcourir la source

fix build

This should fix bug #81
Mathy Vanhoef il y a 4 ans
Parent
commit
2ccfaca0ca
3 fichiers modifiés avec 5 ajouts et 2 suppressions
  1. 1 1
      hostapd/Makefile
  2. 3 0
      krackattack/build.sh
  3. 1 1
      wpa_supplicant/Makefile

+ 1 - 1
hostapd/Makefile

@@ -32,7 +32,7 @@ export BINDIR ?= /usr/local/bin/
 ifndef CONFIG_NO_GITVER
 # Add VERSION_STR postfix for builds from a git repository
 ifeq ($(wildcard ../.git),../.git)
-GITVER := $(shell git describe --dirty=+)
+GITVER := $(shell git describe --dirty=+ --tags)
 ifneq ($(GITVER),)
 CFLAGS += -DGIT_VERSION_STR_POSTFIX=\"-$(GITVER)\"
 endif

+ 3 - 0
krackattack/build.sh

@@ -1,4 +1,7 @@
 #!/bin/bash
+
 cd ../hostapd/
+make clean
+
 cp defconfig .config
 make -j 2

+ 1 - 1
wpa_supplicant/Makefile

@@ -31,7 +31,7 @@ CFLAGS += -I$(abspath ../src/utils)
 ifndef CONFIG_NO_GITVER
 # Add VERSION_STR postfix for builds from a git repository
 ifeq ($(wildcard ../.git),../.git)
-GITVER := $(shell git describe --dirty=+)
+GITVER := $(shell git describe --dirty=+ --tags)
 ifneq ($(GITVER),)
 CFLAGS += -DGIT_VERSION_STR_POSTFIX=\"-$(GITVER)\"
 endif