commit 29f4111cff4e4e1f36a37f304ed3c172e49a2a2c
parent 92ea61fcf5d981e74182e710747df29ac2301682
Author: Remy Noulin <loader2x@gmail.com>
Date: Tue, 28 May 2024 13:42:02 +0200
add a space between main program lflags and lflags from packages
LICENSE | 2 +-
src/common.c | 2 +-
src/common.h | 2 +-
src/sheepy.c | 4 ++--
src/sheepy.h | 2 +-
src/spm.c | 2 +-
6 files changed, 7 insertions(+), 7 deletions(-)
Diffstat:
6 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/LICENSE b/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2023 Remy Noulin
+Copyright (c) 2024 Remy Noulin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/src/common.c b/src/common.c
@@ -1,6 +1,6 @@
// MIT License
//
-// Copyright (c) 2023 Remy Noulin
+// Copyright (c) 2024 Remy Noulin
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/src/common.h b/src/common.h
@@ -1,6 +1,6 @@
// MIT License
//
-// Copyright (c) 2023 Remy Noulin
+// Copyright (c) 2024 Remy Noulin
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/src/sheepy.c b/src/sheepy.c
@@ -1,6 +1,6 @@
// MIT License
//
-// Copyright (c) 2023 Remy Noulin
+// Copyright (c) 2024 Remy Noulin
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
@@ -2147,7 +2147,7 @@ int MAIN(int ARGC, char** ARGV) {
lflags = dupG(lflags);
if (!isBlankG(packageLflags)) {
- pErrorNULL(appendG(&lflags, packageLflags));
+ pErrorNULL(iAppendManyS(&lflags, " ",packageLflags));
free(packageLflags);
}
//logVarG(lflags);
diff --git a/src/sheepy.h b/src/sheepy.h
@@ -1,6 +1,6 @@
// MIT License
//
-// Copyright (c) 2023 Remy Noulin
+// Copyright (c) 2024 Remy Noulin
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/src/spm.c b/src/spm.c
@@ -1,7 +1,7 @@
#! /usr/bin/env sheepy
// MIT License
//
-// Copyright (c) 2023 Remy Noulin
+// Copyright (c) 2024 Remy Noulin
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal