Browse Source

hostapd: Use cp -f in make install

If hostapd is running, a make install fails with
cp: cannot create regular file `/usr/local/bin/hostapd': Text file busy

Use cp -f to avoid this error and force-override the file.

Signed-off-by: Michael Buesch <mb@bu3sch.de>
Michael Buesch 15 years ago
parent
commit
2c657c8dcd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      hostapd/Makefile

+ 1 - 1
hostapd/Makefile

@@ -728,7 +728,7 @@ verify_config:
 	fi
 
 install: all
-	for i in $(ALL); do cp $$i /usr/local/bin/$$i; done
+	for i in $(ALL); do cp -f $$i /usr/local/bin/$$i; done
 
 ../src/drivers/build.hostapd:
 	@if [ -e ../src/drivers/build.wpa_supplicant ]; then \