mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-15 21:43:00 +02:00
Merge branch 'thirteen' of ssh://git.ipfire.org/pub/git/ipfire-2.x into thirteen
This commit is contained in:
@@ -35,11 +35,13 @@ fi
|
||||
|
||||
# Path manipulation
|
||||
if [ "$EUID" = "0" ]; then
|
||||
pathmunge /sbin
|
||||
pathmunge /usr/sbin
|
||||
pathmunge /usr/local/sbin
|
||||
else
|
||||
pathmunge /usr/local/sbin after
|
||||
pathmunge /usr/sbin after
|
||||
pathmunge /sbin after
|
||||
fi
|
||||
|
||||
HOSTNAME=`/bin/hostname 2>/dev/null`
|
||||
|
||||
11
config/profile.d/extrapaths.sh
Normal file
11
config/profile.d/extrapaths.sh
Normal file
@@ -0,0 +1,11 @@
|
||||
# Make sure the basic paths are always available.
|
||||
|
||||
pathmunge /bin
|
||||
pathmunge /usr/bin
|
||||
pathmunge /usr/local/bin
|
||||
|
||||
for directory in $(find /opt/*/bin -maxdepth 1 -type d 2>/dev/null); do
|
||||
pathmunge ${directory} after
|
||||
done
|
||||
|
||||
unset directory
|
||||
3
config/profile.d/glib2-locale.sh
Normal file
3
config/profile.d/glib2-locale.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
# Use the current locale charset for filenames
|
||||
# in applications using GLib
|
||||
export G_FILENAME_ENCODING=@locale
|
||||
1
lfs/bash
1
lfs/bash
@@ -95,6 +95,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/bash-4.0-paths-1.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/bash-4.0-profile-1.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/bash-3.2-ssh_source_bash.patch
|
||||
cd $(DIR_APP) && ./configure $(EXTRA_CONFIG)
|
||||
cd $(DIR_APP) && make $(EXTRA_MAKE)
|
||||
cd $(DIR_APP) && make $(EXTRA_INSTALL) install
|
||||
|
||||
9
src/patches/bash-3.2-ssh_source_bash.patch
Normal file
9
src/patches/bash-3.2-ssh_source_bash.patch
Normal file
@@ -0,0 +1,9 @@
|
||||
diff -up bash-3.2/config-top.h.ssh_source_bash bash-3.2/config-top.h
|
||||
--- bash-3.2/config-top.h.ssh_source_bash 2008-10-23 15:08:04.000000000 +0200
|
||||
+++ bash-3.2/config-top.h 2008-10-23 15:08:33.000000000 +0200
|
||||
@@ -86,4 +86,4 @@
|
||||
|
||||
/* Define this if you want bash to try to check whether it's being run by
|
||||
sshd and source the .bashrc if so (like the rshd behavior). */
|
||||
-/* #define SSH_SOURCE_BASHRC */
|
||||
+#define SSH_SOURCE_BASHRC
|
||||
Reference in New Issue
Block a user