mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-16 18:00:41 +01:00
required due to new-version requirement for next release. Else we could not run the CI tests.
17 lines
273 B
Bash
Executable File
17 lines
273 B
Bash
Executable File
# /bin/bash
|
|
set -o xtrace
|
|
PWD_HOME=$PWD
|
|
mkdir local_env
|
|
mkdir local_env/install
|
|
cd local_env
|
|
pwd
|
|
git clone git://github.com/rsyslog/libfastjson
|
|
cd libfastjson
|
|
git log -2
|
|
autoreconf -fvi
|
|
./configure --prefix=$PWD_HOME/local_env/install
|
|
gmake
|
|
gmake install
|
|
pwd
|
|
ls ../install
|