import sources

This commit is contained in:
Adam Samalik 2023-06-21 14:54:15 +02:00
parent 3286f4a9ab
commit bb4bfeb360
2 changed files with 45 additions and 0 deletions

6
gating.yaml Normal file
View File

@ -0,0 +1,6 @@
--- !Policy
product_versions:
- rhel-8
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}

39
ucpp-rpm.patch Normal file
View File

@ -0,0 +1,39 @@
diff -up ucpp/Makefile.r ucpp/Makefile
--- ucpp/Makefile.r 2011-08-09 07:13:15.000000000 +0200
+++ ucpp/Makefile 2013-05-02 01:36:23.659241707 +0200
@@ -91,25 +91,25 @@ COBJ = mem.o nhash.o cpp.o lexer.o asser
CFLAGS = $(FLAGS)
all: ucpp
- @ar cq libucpp.a *.o
+ ar cq libucpp.a *.o
clean:
- @rm -f *.o ucpp core *.a
+ rm -f *.o ucpp core *.a
ucpp: $(COBJ)
- @$(FINAL_STEP)
+ $(FINAL_STEP)
assert.o: tune.h ucppi.h cpp.h nhash.h mem.h
- @$(CC) $(CFLAGS) -c assert.c
+ $(CC) $(CFLAGS) -c assert.c
cpp.o: tune.h ucppi.h cpp.h nhash.h mem.h
- @$(CC) $(CFLAGS) -c cpp.c
+ $(CC) $(CFLAGS) -c cpp.c
eval.o: tune.h ucppi.h cpp.h nhash.h mem.h arith.c arith.h
- @$(CC) $(CFLAGS) -c eval.c
+ $(CC) $(CFLAGS) -c eval.c
lexer.o: tune.h ucppi.h cpp.h nhash.h mem.h
- @$(CC) $(CFLAGS) -c lexer.c
+ $(CC) $(CFLAGS) -c lexer.c
macro.o: tune.h ucppi.h cpp.h nhash.h mem.h
- @$(CC) $(CFLAGS) -c macro.c
+ $(CC) $(CFLAGS) -c macro.c
mem.o: mem.h
- @$(CC) $(CFLAGS) -c mem.c
+ $(CC) $(CFLAGS) -c mem.c
nhash.o: nhash.h mem.h
- @$(CC) $(CFLAGS) -c nhash.c
+ $(CC) $(CFLAGS) -c nhash.c