Added new patch for makefile, added new VAR_DIR
This commit is contained in:
parent
f7ad8c5884
commit
4685b08774
|
@ -7,7 +7,7 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
|
|||
@@ -1,5 +1,5 @@
|
||||
#!/bin/sh
|
||||
-
|
||||
+NON_INTERACTIVE == 1
|
||||
+NON_INTERACTIVE="1"
|
||||
_sleep()
|
||||
{
|
||||
[ "$NON_INTERACTIVE" = 1 ] || sleep "$@"
|
||||
|
@ -26,7 +26,7 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
|
|||
+BIN_DIR=debian/uronode/usr/bin
|
||||
+LIB_DIR=debian/uronode/usr/lib
|
||||
+MAN_DIR=debian/uronode/usr/share/man
|
||||
+VAR_DIR=debian/uronode/usr/var/ax25
|
||||
+VAR_DIR=debian/uronode/var/lib/ax25
|
||||
|
||||
echo "Welcome to the configuration utility for URONode. This configure script"
|
||||
echo "will very simply and easily guide you into installling URONode with as"
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
--- a/Makefile.in
|
||||
+++ b/Makefile.in
|
||||
@@ -33,6 +33,7 @@
|
||||
install -m 644 -p etc/gateways $(VAR_DIR)/flex
|
||||
|
||||
installbin: all
|
||||
+ install -m 755 -D -d $(SBIN_DIR)
|
||||
install -m 755 -s -p uronode $(SBIN_DIR)
|
||||
install -m 755 -s -p nodeusers $(SBIN_DIR)
|
||||
install -m 755 -s -p axdigi $(SBIN_DIR)
|
|
@ -1 +1,2 @@
|
|||
folder-update
|
||||
makefile
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
etc/ax25
|
||||
usr/sbin
|
||||
usr/share/man
|
||||
var/lib/uronode
|
||||
|
Loading…
Reference in New Issue