THANK YOU!!! ~Ubuntu~
On Fri, May 3, 2024, 7:33 AM Colomban Wendling ***@***.***> wrote: > gcc -Wall -o "%e" "%fâ `pkg-config --cflags gtk+-3.0` > -DGDK_VERSION_MIN_REQUIRED=GDK_VERSION_3_0 `pkg-config --libs gtk+-3.0` > > The issue you have is that the 4th quote (after the %f) is not an ASCII > quote, but U+201C *Left Double Quotation Mark*. Just replace the command > with: > > gcc -Wall -o "%e" "%f" $(pkg-config --cflags gtk+-3.0) > -DGDK_VERSION_MIN_REQUIRED=GDK_VERSION_3_0 $(pkg-config --libs gtk+-3.0) > > and you'll be on your way (I also replaced the \` with $() because it can > be nested, and generally creates less problem when you modify the command > -- but functionally it's the same here). > > â > Reply to this email directly, view it on GitHub > <https://github.com/geany/geany/issues/3863#issuecomment-2092822069>, or > unsubscribe > <https://github.com/notifications/unsubscribe-auth/BIGX5Y6RPJXCW7WFMYASOBDZANYXZAVCNFSM6AAAAABHCDQHLGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDAOJSHAZDEMBWHE> > . > You are receiving this because you authored the thread.Message ID: > ***@***.***> > -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3863#issuecomment-2092939575 You are receiving this because you are subscribed to this thread. Message ID: <geany/geany/issues/3863/[email protected]>
