Fix location of strip(1) to /usr/bin instead of $prefix as determined by

GNU configure.
This commit is contained in:
Cy Schubert 2012-10-01 20:06:55 +00:00
parent d3fc2243e1
commit 6b92a31224
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=305141

View File

@ -1,9 +1,6 @@
$FreeBSD$
--- Makefile.in.orig Mon Dec 11 16:55:06 2006
+++ Makefile.in Thu Aug 2 03:15:52 2007
@@ -54,7 +54,7 @@
--- Makefile.in.orig 2012-07-08 21:55:38.000000000 -0700
+++ Makefile.in 2012-10-01 12:36:55.710386405 -0700
@@ -55,7 +55,7 @@
CONFIGURE_FILES = Makefile config.status config.cache config.h config.log
@ -12,7 +9,7 @@ $FreeBSD$
$(CC) $(CFLAGS) $(DEFS) -c $<
vtund: $(OBJS)
@@ -77,24 +77,24 @@
@@ -80,25 +80,25 @@
rm -f `cat vtun.drivers`
install_man:
@ -40,5 +37,7 @@ $FreeBSD$
- $(INSTALL) -d -m 755 $(INSTALL_OWNER) $(DESTDIR)$(SBIN_DIR)
+# $(INSTALL) -d -m 755 $(INSTALL_OWNER) $(DESTDIR)$(SBIN_DIR)
$(INSTALL) -m 755 $(INSTALL_OWNER) vtund $(DESTDIR)$(SBIN_DIR)
- $(BIN_DIR)/strip $(DESTDIR)$(SBIN_DIR)/vtund
+ /usr/bin/strip $(DESTDIR)$(SBIN_DIR)/vtund
# DO NOT DELETE THIS LINE -- make depend depends on it.